]> git.llucax.com Git - software/druntime.git/commitdiff
Added Error alias for Exception as a placeholder until the exception hierarchy can...
authorsean <sean@4a9d5153-6564-4b3f-b5e1-7e8e9dac548f>
Fri, 10 Oct 2008 18:59:32 +0000 (18:59 +0000)
committersean <sean@4a9d5153-6564-4b3f-b5e1-7e8e9dac548f>
Fri, 10 Oct 2008 18:59:32 +0000 (18:59 +0000)
git-svn-id: http://svn.dsource.org/projects/druntime/trunk@18 4a9d5153-6564-4b3f-b5e1-7e8e9dac548f

import/object.di

index 1745bbb66b78a27e4d2697c33ca1336a33aa90a1..3301d27311a2ea317fc57aecc9b75ec253be1b8d 100644 (file)
@@ -227,3 +227,6 @@ class Exception : Object
     this(string msg, string file, size_t line, Exception next = null);
     override string toString();
 }
+
+
+alias Exception Error;