Files
KnockOutWhist-Web/knockoutwhistweb/app/exceptions/NotInThisGameException.java

8 lines
168 B
Java

package exceptions;
public class NotInThisGameException extends RuntimeException {
public NotInThisGameException(String message) {
super(message);
}
}