View Javadoc

1   package pt.digitalis.dif.utils.extensions.cms.exception;
2   
3   import pt.digitalis.dif.exception.DIFException;
4   
5   /**
6    * Global content manager exception. All other CMS exception extend this exception
7    * 
8    * @author Luis Pinto <a href="mailto:lpinto@digitalis.pt">lpinto@digitalis.pt</a><br/>
9    * @created Sep 22, 2009
10   */
11  public class ContentManagerException extends DIFException {
12  
13      /**  */
14      private static final long serialVersionUID = 1L;
15  
16      /**
17       * @param exception
18       */
19      public ContentManagerException(Exception exception)
20      {
21          super(exception);
22      }
23  
24      /**
25       * @param reason
26       */
27      public ContentManagerException(String reason)
28      {
29          super(reason);
30      }
31  
32  }