OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Lesser General Public | 5 * modify it under the terms of the GNU Lesser General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 // File system | 74 // File system |
75 NotReadableError, | 75 NotReadableError, |
76 EncodingError, | 76 EncodingError, |
77 PathExistsError, | 77 PathExistsError, |
78 | 78 |
79 // SQL | 79 // SQL |
80 SQLDatabaseError, // Naming conflict with DatabaseError class. | 80 SQLDatabaseError, // Naming conflict with DatabaseError class. |
81 | 81 |
82 // Web Crypto | 82 // Web Crypto |
83 OperationError, | 83 OperationError, |
| 84 |
| 85 // Push API |
| 86 PermissionDeniedError, |
84 }; | 87 }; |
85 | 88 |
86 enum V8ErrorType { | 89 enum V8ErrorType { |
87 V8GeneralError = 1000, | 90 V8GeneralError = 1000, |
88 V8TypeError, | 91 V8TypeError, |
89 V8RangeError, | 92 V8RangeError, |
90 V8SyntaxError, | 93 V8SyntaxError, |
91 V8ReferenceError, | 94 V8ReferenceError, |
92 }; | 95 }; |
93 | 96 |
94 } // namespace blink | 97 } // namespace blink |
95 | 98 |
96 #endif // ExceptionCode_h | 99 #endif // ExceptionCode_h |
OLD | NEW |