You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ch...@apache.org on 2005/04/19 12:51:46 UTC

svn commit: r161870 - webservices/axis/trunk/java/modules/core/src/org/apache/axis/engine/AxisError.java

Author: chathura
Date: Tue Apr 19 03:51:45 2005
New Revision: 161870

URL: http://svn.apache.org/viewcvs?view=rev&rev=161870
Log:
Unchecked (Runtime) Exception Added

Added:
    webservices/axis/trunk/java/modules/core/src/org/apache/axis/engine/AxisError.java

Added: webservices/axis/trunk/java/modules/core/src/org/apache/axis/engine/AxisError.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis/engine/AxisError.java?view=auto&rev=161870
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis/engine/AxisError.java (added)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis/engine/AxisError.java Tue Apr 19 03:51:45 2005
@@ -0,0 +1,33 @@
+package org.apache.axis.engine;
+
+/**
+ * @author chathura@opensource.lk
+ *
+ */
+public class AxisError extends RuntimeException {
+	
+	public AxisError(){
+		
+	}
+
+	/**
+	 * 
+	 * @param message Error message
+	 */
+	public AxisError(String message){
+		super(message);		
+	}
+	
+	/**
+	 * 
+	 * @param message Error message
+	 * @param cause Cause
+	 */
+	public AxisError(String message, Throwable cause ){
+		super(message, cause);		
+	} 
+	
+	
+	
+	
+}