From: sean Date: Fri, 10 Oct 2008 18:59:32 +0000 (+0000) Subject: Added Error alias for Exception as a placeholder until the exception hierarchy can... X-Git-Url: https://git.llucax.com/software/druntime.git/commitdiff_plain/0b47f875d2999e307bcd9498584c4d58749d3a3d?hp=12947397ddf9572d1115237c96de46aa0d02ba8f Added Error alias for Exception as a placeholder until the exception hierarchy can be finalized. This should facilitate a batch update later on. git-svn-id: http://svn.dsource.org/projects/druntime/trunk@18 4a9d5153-6564-4b3f-b5e1-7e8e9dac548f --- diff --git a/import/object.di b/import/object.di index 1745bbb..3301d27 100644 --- a/import/object.di +++ b/import/object.di @@ -227,3 +227,6 @@ class Exception : Object this(string msg, string file, size_t line, Exception next = null); override string toString(); } + + +alias Exception Error;