16 lines
309 B
Java
16 lines
309 B
Java
package mindustry.net;
|
|
|
|
import mindustry.gen.*;
|
|
|
|
/**
|
|
* Thrown when a client sends invalid information.
|
|
*/
|
|
public class ValidateException extends RuntimeException{
|
|
public final Player player;
|
|
|
|
public ValidateException(Player player, String s){
|
|
super(s);
|
|
this.player = player;
|
|
}
|
|
}
|