Done Issue 16: Games played counter plugin.

This commit is contained in:
magenoxx 2010-11-14 17:01:12 +00:00
parent a2561515a3
commit b143a5a44d
14 changed files with 342 additions and 32 deletions

View file

@ -0,0 +1,20 @@
package mage.interfaces;
/**
* 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);
}
}