38 lines
866 B
Plaintext
Executable File
38 lines
866 B
Plaintext
Executable File
package com.fp.armas.portal.dao.exceptions;
|
|
|
|
/**
|
|
* Excepción que maneja los errores a nivel del DAO
|
|
* @author dcruz
|
|
*
|
|
*/
|
|
public class DaoException extends RuntimeException {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public DaoException() {
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
public DaoException(String message) {
|
|
super(message);
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
public DaoException(Throwable cause) {
|
|
super(cause);
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
public DaoException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
public DaoException(String message, Throwable cause,
|
|
boolean enableSuppression, boolean writableStackTrace) {
|
|
super(message, cause, enableSuppression, writableStackTrace);
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
}
|