Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 82804 invoked from network); 19 Apr 2005 10:51:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 19 Apr 2005 10:51:53 -0000 Received: (qmail 25574 invoked by uid 500); 19 Apr 2005 10:51:50 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 25523 invoked by uid 500); 19 Apr 2005 10:51:49 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 25508 invoked by uid 99); 19 Apr 2005 10:51:49 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Tue, 19 Apr 2005 03:51:48 -0700 Received: (qmail 82757 invoked by uid 65534); 19 Apr 2005 10:51:47 -0000 Message-ID: <20050419105147.82756.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Mailer: svnmailer-1.0.0-dev Date: Tue, 19 Apr 2005 10:51:46 -0000 Subject: svn commit: r161870 - webservices/axis/trunk/java/modules/core/src/org/apache/axis/engine/AxisError.java To: axis-cvs@ws.apache.org From: chathura@apache.org X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: chathura Date: Tue Apr 19 03:51:45 2005 New Revision: 161870 URL: http://svn.apache.org/viewcvs?view=3Drev&rev=3D161870 Log: Unchecked (Runtime) Exception Added Added: webservices/axis/trunk/java/modules/core/src/org/apache/axis/engine/Axi= sError.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=3Dauto&rev=3D161870 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- webservices/axis/trunk/java/modules/core/src/org/apache/axis/engine/Axi= sError.java (added) +++ webservices/axis/trunk/java/modules/core/src/org/apache/axis/engine/Axi= sError.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 { +=09 + public AxisError(){ + =09 + } + + /** + *=20 + * @param message Error message + */ + public AxisError(String message){ + super(message); =09 + } +=09 + /** + *=20 + * @param message Error message + * @param cause Cause + */ + public AxisError(String message, Throwable cause ){ + super(message, cause); =09 + }=20 +=09 +=09 +=09 +=09 +}