Archived
0

Iniital commit after moving files

This commit is contained in:
Pepich
2017-05-05 00:18:40 +02:00
commit 8e06e95325
41 changed files with 6118 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package com.redstoner.exceptions;
public class PlayerNotFoundException extends Exception
{
private static final long serialVersionUID = -7517266613348837760L;
public PlayerNotFoundException()
{
super("That player could not be found!");
}
}