mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-08-06 20:43:11 +00:00
13 lines
308 B
Java
13 lines
308 B
Java
package com.earth2me.essentials.commands;
|
|
|
|
import static com.earth2me.essentials.I18n.tl;
|
|
|
|
public class WarpNotFoundException extends Exception {
|
|
public WarpNotFoundException() {
|
|
super(tl("warpNotExist"));
|
|
}
|
|
|
|
public WarpNotFoundException(String message) {
|
|
super(message);
|
|
}
|
|
}
|