mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-26 21:47:04 +00:00
Change objj_exception_throw to manually throw an exception, because objj_exception_throw doesn't exist anymore.
This commit is contained in:
committed by
Ross Boucher
parent
fc8525e4d8
commit
bc5a21d545
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user