1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
# -*- coding: utf-8 -*-
# Copyright 2007-2023 The HyperSpy developers
#
# This file is part of RosettaSciIO.
#
# RosettaSciIO is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# RosettaSciIO is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with RosettaSciIO. If not, see <https://www.gnu.org/licenses/#GPL>.
class MountainsMapFileError(Exception):
def __init__(self, msg="Corrupt Mountainsmap file"):
self.error = msg
def __str__(self):
return repr(self.error)
class ByteOrderError(Exception):
def __init__(self, order=""):
self.byte_order = order
def __str__(self):
return repr(self.byte_order)
class DM3FileVersionError(Exception):
def __init__(self, value=""):
self.dm3_version = value
def __str__(self):
return repr(self.dm3_version)
class DM3TagError(Exception):
def __init__(self, value=""):
self.dm3_tag = value
def __str__(self):
return repr(self.dm3_tag)
class DM3DataTypeError(Exception):
def __init__(self, value=""):
self.dm3_dtype = value
def __str__(self):
return repr(self.dm3_dtype)
class DM3TagTypeError(Exception):
def __init__(self, value=""):
self.dm3_tagtype = value
def __str__(self):
return repr(self.dm3_tagtype)
class DM3TagIDError(Exception):
def __init__(self, value=""):
self.dm3_tagID = value
def __str__(self):
return repr(self.dm3_tagID)
class VisibleDeprecationWarning(UserWarning):
"""Visible deprecation warning.
By default, python will not show deprecation warnings, so this class
provides a visible one.
"""
pass
class LazyCupyConversion(Exception):
def __init__(self):
self.error = (
"Automatically converting data to cupy array is not supported "
"for lazy signals. Read the corresponding section in the user "
"guide for more information on how to use GPU with lazy signals."
)
def __str__(self):
return repr(self.error)
|