All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eshore.uas.exception.UnderAttackException Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
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