class CfnLintError(Exception): """ The base exception class for cfn-lint exceptions. :ivar msg: The descriptive message associated with the error. """ fmt = "An unspecified error occurred" def __init__(self, **kwargs): msg = self.fmt.format(**kwargs) Exception.__init__(self, msg) self.kwargs = kwargs class DuplicateRuleError(CfnLintError): """ The data associated with a particular path could not be loaded. :ivar data_path: The data path that the user attempted to load. """ fmt = "Rule already included: {rule_id}"
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
conditions | Folder | 0755 |
|
|
data | Folder | 0755 |
|
|
decode | Folder | 0755 |
|
|
decorators | Folder | 0755 |
|
|
formatters | Folder | 0755 |
|
|
rules | Folder | 0755 |
|
|
template | Folder | 0755 |
|
|
__init__.py | File | 2.47 KB | 0644 |
|
__main__.py | File | 1.78 KB | 0644 |
|
api.py | File | 1.59 KB | 0644 |
|
config.py | File | 26.56 KB | 0644 |
|
core.py | File | 11.02 KB | 0644 |
|
exceptions.py | File | 592 B | 0644 |
|
graph.py | File | 10.85 KB | 0644 |
|
helpers.py | File | 21.95 KB | 0644 |
|
languageExtensions.py | File | 1.98 KB | 0644 |
|
maintenance.py | File | 18.87 KB | 0644 |
|
runner.py | File | 3.93 KB | 0644 |
|
transform.py | File | 8.48 KB | 0644 |
|
version.py | File | 130 B | 0644 |
|