| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 part of models; | 5 part of models; |
| 6 | 6 |
| 7 abstract class BasicException implements Exception { | 7 abstract class BasicException implements Exception { |
| 8 String get message; | 8 String get message; |
| 9 } | 9 } |
| 10 | 10 |
| 11 abstract class ConnectionException implements BasicException {} | 11 abstract class ConnectionException implements BasicException {} |
| 12 | 12 |
| 13 abstract class ResponseException implements BasicException {} | 13 abstract class ResponseException implements BasicException {} |
| (...skipping 26 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 abstract class FileSystemAlreadyExistsException implements RequestException {} | 41 abstract class FileSystemAlreadyExistsException implements RequestException {} |
| 42 | 42 |
| 43 abstract class FileSystemDoesNotExistException implements RequestException {} | 43 abstract class FileSystemDoesNotExistException implements RequestException {} |
| 44 | 44 |
| 45 abstract class FileDoesNotExistException implements RequestException {} | 45 abstract class FileDoesNotExistException implements RequestException {} |
| 46 | 46 |
| 47 abstract class IsolateReloadFailedException implements RequestException {} | 47 abstract class IsolateReloadFailedException implements RequestException {} |
| 48 | 48 |
| 49 abstract class UnknownException implements RequestException {} | 49 abstract class UnknownException implements RequestException {} |
| OLD | NEW |