You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SIPRP/trunk/siprp/ficha/ValuesException.java

23 lines
299 B

/*
* ValuesException.java
*
* Created on 5 de Abril de 2004, 20:22
*/
package siprp.ficha;
/**
*
* @author fpalma
*/
public class ValuesException extends RuntimeException
{
/** Creates a new instance of ValuesException */
public ValuesException( String msg )
{
super( msg );
}
}