Fix exception string content.

This commit is contained in:
Joao Pedrosa 2013-06-29 00:56:37 -03:00
parent bd1c5a1ef1
commit 7b76a3367e

View File

@ -201,7 +201,7 @@ example15() {
try {
throw "Some unexpected error.";
} catch (e) {
print("Example15 null value causes an exception: '${e}'");
print("Example15 an exception: '${e}'");
throw e; // Re-throw
}
} catch (e) {