Fixes a few problems in Dynamips implementation.

This commit is contained in:
grossmj
2015-02-12 19:15:35 -07:00
parent 79a57ca420
commit 8f089c45f5
5 changed files with 34 additions and 18 deletions

View File

@ -19,8 +19,10 @@
Custom exceptions for Dynamips module.
"""
from ..vm_error import VMError
class DynamipsError(Exception):
class DynamipsError(VMError):
def __init__(self, message, original_exception=None):