mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-14 16:33:33 +00:00
14 lines
356 B
Java
14 lines
356 B
Java
|
package com.sk89q.worldedit;
|
||
|
|
||
|
/**
|
||
|
* Thrown when an operation is run that needs an actual player, not a console.
|
||
|
*
|
||
|
*/
|
||
|
public class PlayerNeededException extends RuntimeException {
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
public PlayerNeededException() {
|
||
|
super("This command cannot be run on the console.");
|
||
|
}
|
||
|
}
|