OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
6 | 6 |
7 interface DOMException { | 7 interface DOMException { |
8 | 8 |
9 static final int ABORT_ERR = 20; | 9 static final int ABORT_ERR = 20; |
10 | 10 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 static final int TIMEOUT_ERR = 23; | 49 static final int TIMEOUT_ERR = 23; |
50 | 50 |
51 static final int TYPE_MISMATCH_ERR = 17; | 51 static final int TYPE_MISMATCH_ERR = 17; |
52 | 52 |
53 static final int URL_MISMATCH_ERR = 21; | 53 static final int URL_MISMATCH_ERR = 21; |
54 | 54 |
55 static final int VALIDATION_ERR = 16; | 55 static final int VALIDATION_ERR = 16; |
56 | 56 |
57 static final int WRONG_DOCUMENT_ERR = 4; | 57 static final int WRONG_DOCUMENT_ERR = 4; |
58 | 58 |
59 int get code(); | 59 final int code; |
60 | 60 |
61 String get message(); | 61 final String message; |
62 | 62 |
63 String get name(); | 63 final String name; |
64 | 64 |
65 String toString(); | 65 String toString(); |
66 } | 66 } |
OLD | NEW |