
jpaoletti.jpm.hibernate.security.SECException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpm-hibernate Show documentation
Show all versions of jpm-hibernate Show documentation
Hibernate implementation of jpm data access.
The newest version!
package jpaoletti.jpm.hibernate.security;
import jpaoletti.jpm.core.PMException;
public class SECException extends PMException {
private static final long serialVersionUID = 4594969485542612791L;
private String[] details;
public SECException() {
super();
}
public SECException(String s, String ... details ) {
super(s);
this.details = details;
}
public SECException(String s, Throwable nested) {
super(s, nested);
}
public SECException(String s) {
super(s);
}
public SECException(Throwable nested) {
super(nested);
}
/**
* @param details the details to set
*/
public void setDetails(String[] details) {
this.details = details;
}
/**
* @return the details
*/
public String[] getDetails() {
return details;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy