26 lines
497 B
Java
26 lines
497 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.baja.util;
|
|
|
|
import javax.baja.sys.BajaException;
|
|
|
|
public class CannotValidateException
|
|
extends BajaException {
|
|
public CannotValidateException() {
|
|
}
|
|
|
|
public CannotValidateException(String string, Throwable throwable) {
|
|
super(string, throwable);
|
|
}
|
|
|
|
public CannotValidateException(String string) {
|
|
super(string);
|
|
}
|
|
|
|
public CannotValidateException(Throwable throwable) {
|
|
super(throwable);
|
|
}
|
|
}
|
|
|