diff base/src/java/lang/exceptions.d @ 98:48d4ee626868

rm databinding.observable seems to be duplicate, databinding.beans now building
author Frank Benoit <benoit@tionex.de>
date Wed, 22 Apr 2009 07:30:21 +0200
parents fcf926c91ca4
children 9f4c18c268b2
line wrap: on
line diff
--- a/base/src/java/lang/exceptions.d	Tue Apr 21 11:18:25 2009 +0200
+++ b/base/src/java/lang/exceptions.d	Wed Apr 22 07:30:21 2009 +0200
@@ -55,6 +55,12 @@
     }
 }
 
+class ArithmeticException : Exception {
+    this( String e = null ){
+        super(e);
+    }
+}
+
 class ClassCastException : Exception {
     this( String e = null ){
         super(e);
@@ -70,6 +76,24 @@
     }
 }
 
+class NoSuchMethodException : Exception {
+    this( String e = null){
+        super(e);
+    }
+}
+
+class IllegalAccessException : Exception {
+    this( String e = null){
+        super(e);
+    }
+}
+
+class SecurityException : Exception {
+    this( String e = null){
+        super(e);
+    }
+}
+
 class IndexOutOfBoundsException : Exception {
     this( String e = null){
         super(e);