mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2026-02-18 01:42:32 +01:00
10 lines
274 B
Java
10 lines
274 B
Java
package com.gmail.nossr50.api;
|
|
|
|
public class InvalidPlayerException extends RuntimeException {
|
|
private static final long serialVersionUID = 907213002618581385L;
|
|
|
|
public InvalidPlayerException() {
|
|
super("That player does not exist in the database.");
|
|
}
|
|
}
|