
public class TftpException extends Exception {
    private int errCode;
    
    public TftpException(int errCode, String message) {
        super(message);
        this.errCode = errCode;
    }
    
    public int getErrorCode() {
        return errCode;
    }
}
