| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 // Others introduced in HTML5: | 57 // Others introduced in HTML5: |
| 58 NetworkError, | 58 NetworkError, |
| 59 AbortError, | 59 AbortError, |
| 60 URLMismatchError, | 60 URLMismatchError, |
| 61 QuotaExceededError, | 61 QuotaExceededError, |
| 62 TimeoutError, | 62 TimeoutError, |
| 63 InvalidNodeTypeError, | 63 InvalidNodeTypeError, |
| 64 DataCloneError, | 64 DataCloneError, |
| 65 | 65 |
| 66 // These are IDB-specific. | 66 // These are IDB-specific. |
| 67 IDBNotFoundError, | |
| 68 UnknownError, | 67 UnknownError, |
| 69 ConstraintError, | 68 ConstraintError, |
| 70 DataError, | 69 DataError, |
| 71 TransactionInactiveError, | 70 TransactionInactiveError, |
| 72 ReadOnlyError, | 71 ReadOnlyError, |
| 73 VersionError, | 72 VersionError, |
| 74 | 73 |
| 75 // File system | 74 // File system |
| 76 // FIXME: Consolidate these once https://crbug.com/252233 is fixed. | 75 // FIXME: Consolidate these once https://crbug.com/252233 is fixed. |
| 77 FSNotFoundError, | 76 FSNotFoundError, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 99 SQLTimeoutError, | 98 SQLTimeoutError, |
| 100 | 99 |
| 101 // WebIDL exception types, handled by the binding layer. | 100 // WebIDL exception types, handled by the binding layer. |
| 102 // FIXME: Add GeneralError, EvalError, etc. when implemented in the bind
ings. | 101 // FIXME: Add GeneralError, EvalError, etc. when implemented in the bind
ings. |
| 103 TypeError, | 102 TypeError, |
| 104 }; | 103 }; |
| 105 | 104 |
| 106 } // namespace WebCore | 105 } // namespace WebCore |
| 107 | 106 |
| 108 #endif // ExceptionCode_h | 107 #endif // ExceptionCode_h |
| OLD | NEW |