mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-15 00:43:33 +00:00
13 lines
264 B
Java
13 lines
264 B
Java
|
package com.sk89q.wepif;
|
||
|
|
||
|
/**
|
||
|
* @author zml2008
|
||
|
*/
|
||
|
public class WEPIFRuntimeException extends RuntimeException {
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
public WEPIFRuntimeException(String message) {
|
||
|
super(message);
|
||
|
}
|
||
|
}
|