mirror of
https://github.com/PlaceholderAPI/PlaceholderAPI
synced 2024-10-31 19:44:03 +01:00
9 lines
210 B
Java
9 lines
210 B
Java
|
package me.clip.placeholderapi.exceptions;
|
||
|
|
||
|
public final class NoDefaultCommandException extends RuntimeException {
|
||
|
public NoDefaultCommandException(final String message) {
|
||
|
super(message);
|
||
|
}
|
||
|
}
|
||
|
|