mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-21 11:06:23 +02:00
10 lines
285 B
Java
10 lines
285 B
Java
package com.gmail.nossr50.api.exceptions;
|
|
|
|
public class InvalidPlayerException extends RuntimeException {
|
|
private static final long serialVersionUID = 907213002618581385L;
|
|
|
|
public InvalidPlayerException() {
|
|
super("That player does not exist in the database.");
|
|
}
|
|
}
|