mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
20 lines
366 B
Java
20 lines
366 B
Java
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);
|
|
}
|
|
}
|