package com.epson.iprint.shared; /* compiled from: SharedDataException */ class FileFormatErrorException extends SharedDataException { private String fileName; public FileFormatErrorException() { super("ファイルフォーマットエラー"); } public FileFormatErrorException(String str, Throwable th) { super(str, th); } public FileFormatErrorException(String str) { super(str); } public String getFileName() { return fileName; } public void setFileName(String str) { fileName = str; } }