001 package sears.tools.eawt; 002 003 /** 004 * Exception class for the eawt package 005 */ 006 public class AppException extends Exception { 007 private static final long serialVersionUID = -8718141948715507334L; 008 009 /** 010 * Instantiates a new <tt>AppException</tt> object 011 */ 012 public AppException() { 013 super(); 014 } 015 016 /** 017 * Instantiates a new <tt>AppException</tt> object 018 * @param message the detail message 019 * @see Exception#Exception(String) 020 */ 021 public AppException(String message) { 022 super(message); 023 } 024 }