com.thaiopensource.resolver.ResolverException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trang Show documentation
Show all versions of trang Show documentation
Trang, a multi-format schema converter based on RELAX NG.
package com.thaiopensource.resolver;
/**
*
*/
public class ResolverException extends Exception {
public ResolverException(Throwable t) {
super(t);
}
public ResolverException(String message) {
super(message);
}
public Throwable unwrap() {
if (getMessage() == null) {
Throwable t = getCause();
if (t != null)
return t;
}
return this;
}
}