com.iwuyc.tools.commons.exception.UnsupportedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iwuyc-common Show documentation
Show all versions of iwuyc-common Show documentation
Common tools.Include utility classes,and much much more.
The newest version!
package com.iwuyc.tools.commons.exception;
public class UnsupportedException extends NeilException {
public UnsupportedException() {
}
public UnsupportedException(String message, Throwable cause) {
super(message, cause);
}
}