15c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
25c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Copyright (C) 2009 Google Inc. All rights reserved.
302772c6a72f1ee0b226341a4f4439970c29fc861Ben Murdoch *
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modification, are permitted provided that the following conditions
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * are met:
75c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 1.  Redistributions of source code must retain the above copyright
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer.
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 2.  Redistributions in binary form must reproduce the above copyright
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer in the
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     documentation and/or other materials provided with the distribution.
1202772c6a72f1ee0b226341a4f4439970c29fc861Ben Murdoch *
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
235c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
245c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
255c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#ifndef V8ThrowException_h
265c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#define V8ThrowException_h
275c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
287757ec2eadfa2dd8ac2aeed0a4399e9b07ec38cbBen Murdoch#include "wtf/text/WTFString.h"
295c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#include <v8.h>
305c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
31c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)namespace blink {
325c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
335c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)class V8ThrowException {
345c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)public:
355c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
3651b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    static v8::Handle<v8::Value> createDOMException(int ec, const String& message, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
37e69819bd8e388ea4ad1636a19aa6b2eed4952191Ben Murdoch    {
3851b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)        return createDOMException(ec, message, String(), creationContext, isolate);
39e69819bd8e388ea4ad1636a19aa6b2eed4952191Ben Murdoch    }
4051b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    static v8::Handle<v8::Value> createDOMException(int, const String& sanitizedMessage, const String& unsanitizedMessage, const v8::Handle<v8::Object>& creationContext, v8::Isolate*);
41e69819bd8e388ea4ad1636a19aa6b2eed4952191Ben Murdoch
4251b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    static v8::Handle<v8::Value> throwDOMException(int ec, const String& message, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
43e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)    {
4451b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)        return throwDOMException(ec, message, String(), creationContext, isolate);
45e1f1df5f01594c0e62e751e4b46e779b85c2faa5Torne (Richard Coles)    }
4651b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    static v8::Handle<v8::Value> throwDOMException(int, const String& sanitizedMessage, const String& unsanitizedMessage, const v8::Handle<v8::Object>& creationContext, v8::Isolate*);
47e69819bd8e388ea4ad1636a19aa6b2eed4952191Ben Murdoch
48c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)    static v8::Handle<v8::Value> throwException(v8::Handle<v8::Value>, v8::Isolate*);
495c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
50c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)    static v8::Handle<v8::Value> createGeneralError(const String&, v8::Isolate*);
51c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)    static v8::Handle<v8::Value> throwGeneralError(const String&, v8::Isolate*);
527757ec2eadfa2dd8ac2aeed0a4399e9b07ec38cbBen Murdoch    static v8::Handle<v8::Value> createTypeError(const String&, v8::Isolate*);
537757ec2eadfa2dd8ac2aeed0a4399e9b07ec38cbBen Murdoch    static v8::Handle<v8::Value> throwTypeError(const String&, v8::Isolate*);
54c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)    static v8::Handle<v8::Value> createRangeError(const String&, v8::Isolate*);
55c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)    static v8::Handle<v8::Value> throwRangeError(const String&, v8::Isolate*);
56c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)    static v8::Handle<v8::Value> createSyntaxError(const String&, v8::Isolate*);
57c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)    static v8::Handle<v8::Value> throwSyntaxError(const String&, v8::Isolate*);
58c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)    static v8::Handle<v8::Value> createReferenceError(const String&, v8::Isolate*);
59c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)    static v8::Handle<v8::Value> throwReferenceError(const String&, v8::Isolate*);
605c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
615c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
62c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)} // namespace blink
635c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
645c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#endif // V8ThrowException_h
65