| Constructor: |
public ValidatorException(String msg) {
super(msg);
}
|
public ValidatorException(Object type) {
this(type, null);
}
|
public ValidatorException(String msg,
Throwable cause) {
super(msg);
initCause(cause);
}
|
public ValidatorException(Object type,
X509Certificate cert) {
super((String)type);
this.type = type;
this.cert = cert;
}
|
public ValidatorException(Object type,
X509Certificate cert,
Throwable cause) {
this(type, cert);
initCause(cause);
}
|
public ValidatorException(String msg,
Object type,
X509Certificate cert) {
super(msg);
this.type = type;
this.cert = cert;
}
|
public ValidatorException(String msg,
Object type,
X509Certificate cert,
Throwable cause) {
this(msg, type, cert);
initCause(cause);
}
|