View Javadoc

1   package org.codehaus.xfire;
2   
3   /***
4    * Used for internal XFire exceptions when a fault shouldn't be returned
5    * to the service invoker.
6    * 
7    * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
8    * @since Feb 14, 2004
9    */
10  public class XFireRuntimeException
11      extends RuntimeException
12  {
13      /***
14  	 * @param string
15  	 * @param t
16  	 */
17  	public XFireRuntimeException(String message, Throwable t)
18  	{
19  		super( message, t );
20  	}
21  
22      /***
23       * @param string
24       */
25      public XFireRuntimeException(String message)
26      {
27          super( message );
28      }
29      
30      
31  }