blob: 5d30f768e2278e7caa4b64fd40493933cb09a2ec [file] [log] [blame]
Sylvain Munaut76504e02010-12-07 00:24:32 +01001# -*- coding: utf-8 -*-
2
3""" pySim: Exceptions
4"""
5
6#
7# Copyright (C) 2009-2010 Sylvain Munaut <tnt@246tNt.com>
Harald Weltee79cc802021-01-21 14:10:43 +01008# Copyright (C) 2021 Harald Welte <laforge@osmocom.org>
Sylvain Munaut76504e02010-12-07 00:24:32 +01009#
10# This program is free software: you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation, either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program. If not, see <http://www.gnu.org/licenses/>.
22#
23
24from __future__ import absolute_import
25
Denis 'GNUtoo' Carikli8902bcd2019-09-12 15:03:23 +020026try:
27 # This is for compatibility with python 2 and 3
28 from exceptions import Exception
29except:
Sylvain Munaut76504e02010-12-07 00:24:32 +010030 pass
31
Denis 'GNUtoo' Carikli8902bcd2019-09-12 15:03:23 +020032class NoCardError(Exception):
Sylvain Munaut76504e02010-12-07 00:24:32 +010033 pass
Vadim Yanitskiy1381ff12018-10-27 01:48:15 +070034
Denis 'GNUtoo' Carikli8902bcd2019-09-12 15:03:23 +020035class ProtocolError(Exception):
36 pass
37
38class ReaderError(Exception):
Vadim Yanitskiy1381ff12018-10-27 01:48:15 +070039 pass
Harald Weltee79cc802021-01-21 14:10:43 +010040
41class SwMatchError(Exception):
42 """Raised when an operation specifies an expected SW but the actual SW from
43 the card doesn't match."""
44 def __init__(self, sw_actual, sw_expected):
45 self.sw_actual = sw_actual
46 self.sw_expected = sw_expected
47 def __str__(self):
48 return "SW match failed! Expected %s and got %s." % (self.sw_expected, self.sw_actual)