![JAR search and dependency download from the Maven repository](/logo.png)
com.eshore.uas.exception.UnderAttackException Maven / Gradle / Ivy
package com.eshore.uas.exception;
public class UnderAttackException extends RuntimeException {
private int code ;
/**
*
*/
private static final long serialVersionUID = 1L;
public UnderAttackException(String msg) {
super(msg);
}
public int getCode() {
return code;
}
public UnderAttackException setCode(int code) {
this.code = code;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy