ParametersErrorException.java 569 B

1234567891011121314151617181920212223242526
  1. package com.epson.iprint.shared;
  2. /* compiled from: SharedDataException */
  3. class ParametersErrorException extends SharedDataException {
  4. private String ParaName;
  5. public ParametersErrorException() {
  6. super("parameter error");
  7. }
  8. public ParametersErrorException(String str) {
  9. super(str);
  10. }
  11. public ParametersErrorException(String str, Throwable th) {
  12. super(str, th);
  13. }
  14. public String getParaName() {
  15. return this.ParaName;
  16. }
  17. public void setParaName(String str) {
  18. this.ParaName = str;
  19. }
  20. }