blob: f1d1a18648377e2720adb62627a81e3b31e72d0d [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
Denis 'GNUtoo' Carikli8902bcd2019-09-12 15:03:23 +020024class NoCardError(Exception):
Harald Welteee3501f2021-04-02 13:00:18 +020025 """No card was found in the reader."""
Sylvain Munaut76504e02010-12-07 00:24:32 +010026 pass
Vadim Yanitskiy1381ff12018-10-27 01:48:15 +070027
Denis 'GNUtoo' Carikli8902bcd2019-09-12 15:03:23 +020028class ProtocolError(Exception):
Harald Welteee3501f2021-04-02 13:00:18 +020029 """Some kind of protocol level error interfacing with the card."""
Denis 'GNUtoo' Carikli8902bcd2019-09-12 15:03:23 +020030 pass
31
32class ReaderError(Exception):
Harald Welteee3501f2021-04-02 13:00:18 +020033 """Some kind of general error with the card reader."""
Vadim Yanitskiy1381ff12018-10-27 01:48:15 +070034 pass
Harald Weltee79cc802021-01-21 14:10:43 +010035
36class SwMatchError(Exception):
37 """Raised when an operation specifies an expected SW but the actual SW from
38 the card doesn't match."""
Harald Welteee3501f2021-04-02 13:00:18 +020039 def __init__(self, sw_actual:str, sw_expected:str, rs=None):
40 """
41 Args:
42 sw_actual : the SW we actually received from the card (4 hex digits)
43 sw_expected : the SW we expected to receive from the card (4 hex digits)
44 rs : interpreter class to convert SW to string
45 """
Harald Weltee79cc802021-01-21 14:10:43 +010046 self.sw_actual = sw_actual
47 self.sw_expected = sw_expected
Harald Welteb2edd142021-01-08 23:29:35 +010048 self.rs = rs
Harald Weltee79cc802021-01-21 14:10:43 +010049 def __str__(self):
Harald Welteb2edd142021-01-08 23:29:35 +010050 if self.rs:
Vadim Yanitskiy3b51f432021-03-12 02:18:06 +010051 r = self.rs.interpret_sw(self.sw_actual)
Harald Welteb2edd142021-01-08 23:29:35 +010052 if r:
53 return "SW match failed! Expected %s and got %s: %s - %s" % (self.sw_expected, self.sw_actual, r[0], r[1])
Harald Weltee79cc802021-01-21 14:10:43 +010054 return "SW match failed! Expected %s and got %s." % (self.sw_expected, self.sw_actual)