KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > avalon > phoenix > interfaces > ManagerException


1 /*
2  * Copyright (C) The Apache Software Foundation. All rights reserved.
3  *
4  * This software is published under the terms of the Apache Software License
5  * version 1.1, a copy of which has been included with this distribution in
6  * the LICENSE.txt file.
7  */

8 package org.apache.avalon.phoenix.interfaces;
9
10 import org.apache.avalon.framework.CascadingException;
11
12 /**
13  * The ManagerException used to indicate problems with managers.
14  *
15  * @author <a HREF="mailto:peter at apache.org">Peter Donald</a>
16  */

17 public class ManagerException
18     extends CascadingException
19 {
20     public ManagerException( final String JavaDoc message )
21     {
22         this( message, null );
23     }
24
25     public ManagerException( final String JavaDoc message, final Throwable JavaDoc throwable )
26     {
27         super( message, throwable );
28     }
29 }
30
Popular Tags