Moved Mage.Common classes from src to src/main/java

This commit is contained in:
magenoxx 2017-04-20 19:05:09 +03:00
parent e9d31aa93c
commit 21eb420c16
102 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,22 @@
package mage.interfaces;
import mage.MageException;
/**
* Exception thrown by plugin on errors.
*
* @author nantuko
*
*/
public class PluginException extends MageException {
private static final long serialVersionUID = 5528005696138392272L;
public PluginException(String message) {
super(message);
}
public PluginException(Throwable t) {
super(t);
}
}