Move profiles into libzontreck, and create relevant events
This commit is contained in:
parent
453d5642b7
commit
6789b0f329
8 changed files with 231 additions and 2 deletions
|
@ -0,0 +1,9 @@
|
|||
package dev.zontreck.libzontreck.profiles;
|
||||
|
||||
public class UserProfileNotYetExistsException extends Exception{
|
||||
String playerID;
|
||||
public UserProfileNotYetExistsException(String id){
|
||||
super("A user profile does not yet exist");
|
||||
playerID=id;
|
||||
}
|
||||
}
|
Reference in a new issue