| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 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. | |
| 4 | |
| 5 // WARNING: | |
| 6 // This file contains documentation that is merged into the real source. | |
| 7 // Do not make code changes here. | |
| 8 | |
| 9 /// @domName FileException | |
| 10 interface FileException { | |
| 11 | |
| 12 static final int ABORT_ERR = 3; | |
| 13 | |
| 14 static final int ENCODING_ERR = 5; | |
| 15 | |
| 16 static final int INVALID_MODIFICATION_ERR = 9; | |
| 17 | |
| 18 static final int INVALID_STATE_ERR = 7; | |
| 19 | |
| 20 static final int NOT_FOUND_ERR = 1; | |
| 21 | |
| 22 static final int NOT_READABLE_ERR = 4; | |
| 23 | |
| 24 static final int NO_MODIFICATION_ALLOWED_ERR = 6; | |
| 25 | |
| 26 static final int PATH_EXISTS_ERR = 12; | |
| 27 | |
| 28 static final int QUOTA_EXCEEDED_ERR = 10; | |
| 29 | |
| 30 static final int SECURITY_ERR = 2; | |
| 31 | |
| 32 static final int SYNTAX_ERR = 8; | |
| 33 | |
| 34 static final int TYPE_MISMATCH_ERR = 11; | |
| 35 | |
| 36 /** @domName FileException.code */ | |
| 37 final int code; | |
| 38 | |
| 39 /** @domName FileException.message */ | |
| 40 final String message; | |
| 41 | |
| 42 /** @domName FileException.name */ | |
| 43 final String name; | |
| 44 | |
| 45 /** @domName FileException.toString */ | |
| 46 String toString(); | |
| 47 } | |
| OLD | NEW |