diff options
| author | morefigs <morefigs@gmail.com> | 2015-01-29 14:40:56 +1100 |
|---|---|---|
| committer | morefigs <morefigs@gmail.com> | 2015-01-29 14:40:56 +1100 |
| commit | 1cede4b2d22656991adb46adde8050b091faa1f3 (patch) | |
| tree | 841efdc843d4b07471c1855654174ac08d4dd722 | |
| parent | 0697fc9a94755ed45e6bc8695c3a3f48d096cdaf (diff) | |
| parent | 477935f55461505c73630977fd10b34643afa7f5 (diff) | |
| download | pymba-1cede4b2d22656991adb46adde8050b091faa1f3.tar.gz pymba-1cede4b2d22656991adb46adde8050b091faa1f3.zip | |
Merge pull request #12 from fmder/vimba-error
Print the error message to console
| -rw-r--r-- | pymba/vimbaexception.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pymba/vimbaexception.py b/pymba/vimbaexception.py index 510479b..87e4a70 100644 --- a/pymba/vimbaexception.py +++ b/pymba/vimbaexception.py @@ -58,3 +58,5 @@ class VimbaException(Exception): self._errorCode = errorCode else: self._errorCode = -1000 + + super(VimbaException, self).__init__(self.message) |
