comparison 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
comparison
equal deleted inserted replaced
97:c86eb8b3098e 98:48d4ee626868
53 this( String file, long line, String e = null ){ 53 this( String file, long line, String e = null ){
54 super(e); 54 super(e);
55 } 55 }
56 } 56 }
57 57
58 class ArithmeticException : Exception {
59 this( String e = null ){
60 super(e);
61 }
62 }
63
58 class ClassCastException : Exception { 64 class ClassCastException : Exception {
59 this( String e = null ){ 65 this( String e = null ){
60 super(e); 66 super(e);
61 } 67 }
62 } 68 }
65 this( String e = null ){ 71 this( String e = null ){
66 super(e); 72 super(e);
67 } 73 }
68 this( Exception e ){ 74 this( Exception e ){
69 super(e.toString); 75 super(e.toString);
76 }
77 }
78
79 class NoSuchMethodException : Exception {
80 this( String e = null){
81 super(e);
82 }
83 }
84
85 class IllegalAccessException : Exception {
86 this( String e = null){
87 super(e);
88 }
89 }
90
91 class SecurityException : Exception {
92 this( String e = null){
93 super(e);
70 } 94 }
71 } 95 }
72 96
73 class IndexOutOfBoundsException : Exception { 97 class IndexOutOfBoundsException : Exception {
74 this( String e = null){ 98 this( String e = null){