OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 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 | 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 /** | 5 /** |
6 * [Directory] objects are used for working with directories. | 6 * [Directory] objects are used for working with directories. |
7 */ | 7 */ |
8 interface Directory default _Directory { | 8 interface Directory default _Directory { |
9 /** | 9 /** |
10 * Creates a directory object. The path is either a full path or | 10 * Creates a directory object. The path is either a full path or |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 void set onError(void onError(String error)); | 138 void set onError(void onError(String error)); |
139 | 139 |
140 /** | 140 /** |
141 * Gets the path of this directory. | 141 * Gets the path of this directory. |
142 */ | 142 */ |
143 final String path; | 143 final String path; |
144 } | 144 } |
145 | 145 |
146 | 146 |
147 class DirectoryException { | 147 class DirectoryException { |
148 const DirectoryException([String this.message, int this.errorCode = 0]); | 148 const DirectoryException(String this.message, [this.osError = null]); |
149 String toString() => "DirectoryException: $message"; | 149 String toString() { |
| 150 String result = "DirectoryException: $message"; |
| 151 if (osError != null) { |
| 152 result = "$result (${osError.toString()})"; |
| 153 } |
| 154 return result; |
| 155 } |
150 final String message; | 156 final String message; |
151 final int errorCode; | 157 final OSError osError; |
152 } | 158 } |
OLD | NEW |