package com.perforce.jbrown.examples; /*** * Exception class to hold Application Exceptions * @author jbrown * */ public class AppException extends Exception { /** */ private static final long serialVersionUID = 1L; public AppException(String msg) { super(msg); } public AppException(String msg, Throwable t) { super(msg,t); } }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 19962 | Joel Brown | Example for creating a client spec |