|
|
@ -19,9 +19,8 @@ from PyHSPlasma import * |
|
|
|
|
|
|
|
|
|
|
|
class ExportError(Exception): |
|
|
|
class ExportError(Exception): |
|
|
|
def __init__(self, value="Undefined Export Error"): |
|
|
|
def __init__(self, value="Undefined Export Error"): |
|
|
|
self.value = value |
|
|
|
super(Exception, self).__init__(value) |
|
|
|
def __str__(self): |
|
|
|
|
|
|
|
return self.value |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Exporter: |
|
|
|
class Exporter: |
|
|
|
def __init__(self, op): |
|
|
|
def __init__(self, op): |
|
|
|