mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-16 20:36:12 +00:00
ed2f15cc54
1. Remove marco from dev 2. Add namehistory 3. Fix grammar issues 4. Actually use CoreProtect bridge to rollback players 5. Improve automatic wiper
13 lines
266 B
Java
13 lines
266 B
Java
package me.totalfreedom.totalfreedommod.command;
|
|
|
|
public class CommandFailException extends RuntimeException
|
|
{
|
|
|
|
private static final long serialVersionUID = -92333791173123L;
|
|
|
|
public CommandFailException(String message)
|
|
{
|
|
super(message);
|
|
}
|
|
|
|
} |