Revision: 16270
          http://gate.svn.sourceforge.net/gate/?rev=16270&view=rev
Author:   ian_roberts
Date:     2012-11-13 17:04:15 +0000 (Tue, 13 Nov 2012)
Log Message:
-----------
Added non-chaining constructors to NonFatalJapeException - I think there are
reasonable situations where you want to signal a non-fatal exception (something
wrong with the input maybe) that wasn't triggered by a lower-level exception.

Modified Paths:
--------------
    gate/trunk/src/gate/jape/NonFatalJapeException.java

Modified: gate/trunk/src/gate/jape/NonFatalJapeException.java
===================================================================
--- gate/trunk/src/gate/jape/NonFatalJapeException.java 2012-11-13 16:34:26 UTC 
(rev 16269)
+++ gate/trunk/src/gate/jape/NonFatalJapeException.java 2012-11-13 17:04:15 UTC 
(rev 16270)
@@ -16,6 +16,14 @@
 
 public class NonFatalJapeException extends JapeException {
 
+  public NonFatalJapeException() {
+    super();
+  }
+  
+  public NonFatalJapeException(String message) {
+    super(message);
+  }
+  
   public NonFatalJapeException(Throwable cause) {
     super(cause);
   }

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Monitor your physical, virtual and cloud infrastructure from a single
web console. Get in-depth insight into apps, servers, databases, vmware,
SAP, cloud infrastructure, etc. Download 30-day Free Trial.
Pricing starts from $795 for 25 servers or applications!
http://p.sf.net/sfu/zoho_dev2dev_nov
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to