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

  1. package export;
  2. public class ResponseCodeWrongException extends Exception
  3. {
  4. private static final long serialVersionUID = -1593242809354614946L;
  5. private int responseCode;
  6. public ResponseCodeWrongException(int responseCode)
  7. {
  8. this.responseCode=responseCode;
  9. }
  10. public int getResponseCode()
  11. {
  12. return responseCode;
  13. }
  14. public void setResponseCode(int responseCode)
  15. {
  16. this.responseCode = responseCode;
  17. }
  18. }