Revision: 195
http://asunit.svn.sourceforge.net/asunit/?rev=195&view=rev
Author: i_tyrrell
Date: 2008-07-13 12:28:39 -0700 (Sun, 13 Jul 2008)
Log Message:
-----------
Normalized errors.
Modified Paths:
--------------
branches/ityrrell/framework/as25/asunit/errors/AssertionFailedError.as
branches/ityrrell/framework/as25/asunit/errors/ClassNotFoundError.as
branches/ityrrell/framework/as25/asunit/errors/InstanceNotFoundError.as
branches/ityrrell/framework/as25/asunit/errors/UnimplementedFeatureError.as
Modified: branches/ityrrell/framework/as25/asunit/errors/AssertionFailedError.as
===================================================================
--- branches/ityrrell/framework/as25/asunit/errors/AssertionFailedError.as 2008-07-13 19:23:44 UTC (rev 194)
+++ branches/ityrrell/framework/as25/asunit/errors/AssertionFailedError.as 2008-07-13 19:28:39 UTC (rev 195)
@@ -1,7 +1,9 @@
-
class asunit.errors.AssertionFailedError extends Error {
+ public var fqcn:String = "asunit.errors.AssertionFailedError";
+
public function AssertionFailedError(msg:String) {
super(msg);
+ name = "AssertionFailedError";
}
}
\ No newline at end of file
Modified: branches/ityrrell/framework/as25/asunit/errors/ClassNotFoundError.as
===================================================================
--- branches/ityrrell/framework/as25/asunit/errors/ClassNotFoundError.as 2008-07-13 19:23:44 UTC (rev 194)
+++ branches/ityrrell/framework/as25/asunit/errors/ClassNotFoundError.as 2008-07-13 19:28:39 UTC (rev 195)
@@ -1,7 +1,9 @@
-
class asunit.errors.ClassNotFoundError extends Error {
+ public var fqcn:String = "asunit.errors.ClassNotFoundError";
+
public function ClassNotFoundError(msg:String) {
super(msg);
+ name = "ClassNotFoundError";
}
}
\ No newline at end of file
Modified: branches/ityrrell/framework/as25/asunit/errors/InstanceNotFoundError.as
===================================================================
--- branches/ityrrell/framework/as25/asunit/errors/InstanceNotFoundError.as 2008-07-13 19:23:44 UTC (rev 194)
+++ branches/ityrrell/framework/as25/asunit/errors/InstanceNotFoundError.as 2008-07-13 19:28:39 UTC (rev 195)
@@ -1,7 +1,9 @@
-
class asunit.errors.InstanceNotFoundError extends Error {
+ public var fqcn:String = "asunit.errors.InstanceNotFoundError";
+
public function InstanceNotFoundError(msg:String) {
super(msg);
+ name = "InstanceNotFoundError";
}
}
\ No newline at end of file
Modified: branches/ityrrell/framework/as25/asunit/errors/UnimplementedFeatureError.as
===================================================================
--- branches/ityrrell/framework/as25/asunit/errors/UnimplementedFeatureError.as 2008-07-13 19:23:44 UTC (rev 194)
+++ branches/ityrrell/framework/as25/asunit/errors/UnimplementedFeatureError.as 2008-07-13 19:28:39 UTC (rev 195)
@@ -1,7 +1,9 @@
+class asunit.errors.UnimplementedFeatureError extends Error {
-class asunit.errors.UnimplementedFeatureError extends Error {
+ public var fqcn:String = "asunit.errors.UnimplementedFeatureError";
public function UnimplementedFeatureError(msg:String) {
super(msg);
+ name = "UnimplementedFeatureError";
}
}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|