Change objj_exception_throw to manually throw an exception, because objj_exception_throw doesn't exist anymore.

This commit is contained in:
Paul Baumgart
2010-05-15 12:19:06 -07:00
committed by Ross Boucher
parent fc8525e4d8
commit bc5a21d545
+2 -2
View File
@@ -217,14 +217,14 @@ FIXME: Do we need this?
*/
- (CPDecimal)decimalValue
{
objj_throw_exception("decimalValue: NOT YET IMPLEMENTED");
throw new Error("decimalValue: NOT YET IMPLEMENTED");
}
- (CPString)descriptionWithLocale:(CPDictionary)aDictionary
{
if (!aDictionary) return toString();
objj_throw_exception("descriptionWithLocale: NOT YET IMPLEMENTED");
throw new Error("descriptionWithLocale: NOT YET IMPLEMENTED");
}
- (CPString)description