| OLD | NEW |
| 1 #!/usr/bin/python2.4 | 1 #!/usr/bin/python2.4 |
| 2 # | 2 # |
| 3 # | 3 # |
| 4 # Copyright 2008, The Android Open Source Project | 4 # Copyright 2008, The Android Open Source Project |
| 5 # | 5 # |
| 6 # Licensed under the Apache License, Version 2.0 (the "License"); | 6 # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 # you may not use this file except in compliance with the License. | 7 # you may not use this file except in compliance with the License. |
| 8 # You may obtain a copy of the License at | 8 # You may obtain a copy of the License at |
| 9 # | 9 # |
| 10 # http://www.apache.org/licenses/LICENSE-2.0 | 10 # http://www.apache.org/licenses/LICENSE-2.0 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 | 38 |
| 39 class AbortError(MsgException): | 39 class AbortError(MsgException): |
| 40 """Generic exception that indicates a fatal error has occurred and program | 40 """Generic exception that indicates a fatal error has occurred and program |
| 41 execution should be aborted.""" | 41 execution should be aborted.""" |
| 42 | 42 |
| 43 | 43 |
| 44 class ParseError(MsgException): | 44 class ParseError(MsgException): |
| 45 """Raised when xml data to parse has unrecognized format.""" | 45 """Raised when xml data to parse has unrecognized format.""" |
| 46 | 46 |
| OLD | NEW |