magarena/src/magic/exception/DesktopNotSupportedExceptio...

15 lines
330 B
Java

package magic.exception;
@SuppressWarnings("serial")
public class DesktopNotSupportedException extends Exception {
public DesktopNotSupportedException(final String message) {
super(message);
}
public DesktopNotSupportedException() {
this("Operation is not supported by operating system.");
}
}