View Javadoc

1   package org.tubo.exception;
2   
3   import org.apache.commons.logging.Log;
4   import org.apache.commons.logging.LogFactory;
5   
6   /**
7    * Created: Jun 23, 2005 6:28:55 AM
8    * Last Modification Date: $Date: 2006-10-19 12:11:35 -0300 (Thu, 19 Oct 2006) $
9    *
10   * @author jvlio (jvlio@users.sourceforge.net)
11   * @version $Revision: 17 $
12   */
13  public class TuboResourceException extends TuboException {
14      public static final String RCS_ID = "$Id: TuboResourceException.java 17 2006-10-19 15:11:35Z maldito_orco $";
15      private static Log log = LogFactory.getLog(TuboResourceException.class);
16  
17      public TuboResourceException() {
18      }
19  
20      public TuboResourceException(String message) {
21          super(message);
22      }
23  
24      public TuboResourceException(Throwable cause) {
25          super(cause);
26      }
27  
28      public TuboResourceException(String message, Throwable cause) {
29          super(message, cause);
30      }
31  }