You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
424 B

package export;
public class ResponseCodeWrongException extends Exception
{
private static final long serialVersionUID = -1593242809354614946L;
private int responseCode;
public ResponseCodeWrongException(int responseCode)
{
this.responseCode=responseCode;
}
public int getResponseCode()
{
return responseCode;
}
public void setResponseCode(int responseCode)
{
this.responseCode = responseCode;
}
}