| Index: Source/bindings/v8/ExceptionMessages.cpp
|
| diff --git a/Source/bindings/v8/ExceptionMessages.cpp b/Source/bindings/v8/ExceptionMessages.cpp
|
| index 0309f1dd5b723e7b4d9f15c515bf08b5e9ad0e23..0813eb736f11067e1b2d6d1b3ba2a34185d8898e 100644
|
| --- a/Source/bindings/v8/ExceptionMessages.cpp
|
| +++ b/Source/bindings/v8/ExceptionMessages.cpp
|
| @@ -33,6 +33,11 @@
|
|
|
| namespace WebCore {
|
|
|
| +String ExceptionMessages::failedToConstruct(const String& type, const String& detail)
|
| +{
|
| + return "Failed to construct '" + type + (!detail.isEmpty() ? String("': " + detail) : String("'"));
|
| +}
|
| +
|
| String ExceptionMessages::failedToExecute(const String& method, const String& type, const String& detail)
|
| {
|
| return "Failed to execute '" + method + "' on '" + type + (!detail.isEmpty() ? String("': " + detail) : String("'"));
|
|
|