Errors

exception pManager.modules.fileParser.ParserError(message, filename=None)[source]

Base class for exceptions in the parser module.

with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pManager.modules.fileParser.ConfigurationError(message, filename=None)[source]

Exception raised for configuration-related errors during file parsing.

with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pManager.modules.fileParser.UnknownServiceError(message, filename=None)[source]

Exception raised when an unknown service is encountered during parsing.

with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pManager.modules.fileParser.UnknownPortError(message, filename=None)[source]

Exception raised when an unknown port is encountered during parsing.

with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pManager.modules.fileParser.FormatError(message, filename=None)[source]

Exception raised for errors in the file format.

with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pManager.modules.fileWriter.WriterError(message, filename=None)[source]

Base class for exceptions in the writer module.

with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.