maia/registro/.svn/pristine/36/362f4569a5313ba391dad41a168...

39 lines
912 B
Plaintext
Executable File

package com.fp.armas.portal.util;
/**
* Excepción general para el módulo de Registro de usuarios
* @author dcruz
*
*/
public class RegistroException extends RuntimeException {
private static final long serialVersionUID = 1L;
public RegistroException() {
super();
// TODO Auto-generated constructor stub
}
public RegistroException(String message, Throwable cause,
boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
public RegistroException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public RegistroException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public RegistroException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
}