aboutsummaryrefslogtreecommitdiffstats
path: root/pySim/exceptions.py
diff options
context:
space:
mode:
authorEric Butler <eric@codebutler.com>2012-08-07 15:10:40 -0700
committerEric Butler <eric@codebutler.com>2012-08-07 15:10:40 -0700
commitfebca328969cf4fe9fea81b2280b511518dec8bf (patch)
tree1ffee546eeb3be1bf9a504e27604c79dc78e20ae /pySim/exceptions.py
parent1ea9c1c4336e71260afe5742be0000b5a252fc84 (diff)
Added JavaCard stuff.
Diffstat (limited to 'pySim/exceptions.py')
-rw-r--r--pySim/exceptions.py33
1 files changed, 0 insertions, 33 deletions
diff --git a/pySim/exceptions.py b/pySim/exceptions.py
deleted file mode 100644
index 403f54c..0000000
--- a/pySim/exceptions.py
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-
-""" pySim: Exceptions
-"""
-
-#
-# Copyright (C) 2009-2010 Sylvain Munaut <tnt@246tNt.com>
-#
-# This program 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 2 of the License, or
-# (at your option) any later version.
-#
-# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
-#
-
-from __future__ import absolute_import
-
-import exceptions
-
-
-class NoCardError(exceptions.Exception):
- pass
-
-class ProtocolError(exceptions.Exception):
- pass