1 2 23 package org.enhydra.tool.archive; 24 25 import org.enhydra.tool.common.ToolException; 26 27 public class ArchiveException extends ToolException { 28 29 31 private final String EX_NAME = "Archive Exception"; 33 public ArchiveException (Throwable t, String s) { 34 super (t, s); 35 } 36 37 public ArchiveException (String message) { 38 super (message); 39 } 40 41 public String getExceptionName () { 42 return EX_NAME; 43 } 44 45 } 46 47 | Popular Tags |