mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-08-01 03:55:28 +02:00
13 lines
321 B
Java
13 lines
321 B
Java
package com.gmail.nossr50.api.exceptions;
|
|
|
|
import java.io.Serial;
|
|
|
|
public class InvalidPlayerException extends RuntimeException {
|
|
@Serial
|
|
private static final long serialVersionUID = 907213002618581385L;
|
|
|
|
public InvalidPlayerException() {
|
|
super("That player does not exist in the database.");
|
|
}
|
|
}
|