ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalcmagnetic_scattrelease-4.2.2ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change
on this file since 59dfb53 was
3ece5dd,
checked in by lewis, 7 years ago
|
Raise and catch correct exceptions in CanSAS XML reader
|
-
Property mode set to
100644
|
File size:
1.1 KB
|
Rev | Line | |
---|
[270c882b] | 1 | """ |
---|
| 2 | Exceptions specific to loading data. |
---|
| 3 | """ |
---|
| 4 | |
---|
| 5 | |
---|
| 6 | class NoKnownLoaderException(Exception): |
---|
| 7 | """ |
---|
| 8 | Exception for files with no associated reader based on the file |
---|
| 9 | extension of the loaded file. This exception should only be thrown by |
---|
| 10 | loader.py. |
---|
| 11 | """ |
---|
[3ece5dd] | 12 | def __init__(self, e=None): |
---|
[270c882b] | 13 | self.message = e |
---|
| 14 | |
---|
| 15 | |
---|
[371b9e2] | 16 | class DefaultReaderException(Exception): |
---|
[270c882b] | 17 | """ |
---|
[371b9e2] | 18 | Exception for files with no associated reader. This should be thrown by |
---|
| 19 | default readers only to tell Loader to try the next reader. |
---|
[270c882b] | 20 | """ |
---|
[3ece5dd] | 21 | def __init__(self, e=None): |
---|
[270c882b] | 22 | self.message = e |
---|
| 23 | |
---|
| 24 | |
---|
[371b9e2] | 25 | class FileContentsException(Exception): |
---|
[da8bb53] | 26 | """ |
---|
[371b9e2] | 27 | Exception for files with an associated reader, but with no loadable data. |
---|
| 28 | This is useful for catching loader or file format issues. |
---|
[da8bb53] | 29 | """ |
---|
[3ece5dd] | 30 | def __init__(self, e=None): |
---|
[da8bb53] | 31 | self.message = e |
---|
| 32 | |
---|
| 33 | |
---|
[270c882b] | 34 | class DataReaderException(Exception): |
---|
| 35 | """ |
---|
| 36 | Exception for files that were able to mostly load, but had minor issues |
---|
| 37 | along the way. |
---|
| 38 | Any exceptions of this type should be put into the datainfo.errors |
---|
| 39 | """ |
---|
[3ece5dd] | 40 | def __init__(self, e=None): |
---|
| 41 | self.message = e |
---|
Note: See
TracBrowser
for help on using the repository browser.