FileFormatErrorException.java 593 B

1234567891011121314151617181920212223242526
  1. package com.epson.iprint.shared;
  2. /* compiled from: SharedDataException */
  3. class FileFormatErrorException extends SharedDataException {
  4. private String fileName;
  5. public FileFormatErrorException() {
  6. super("ファイルフォーマットエラー");
  7. }
  8. public FileFormatErrorException(String str, Throwable th) {
  9. super(str, th);
  10. }
  11. public FileFormatErrorException(String str) {
  12. super(str);
  13. }
  14. public String getFileName() {
  15. return this.fileName;
  16. }
  17. public void setFileName(String str) {
  18. this.fileName = str;
  19. }
  20. }