Total Complexity | 1 |
Total Lines | 5 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 1 |
1 | # Licensed to the StackStorm, Inc ('StackStorm') under one or more |
||
23 | class ActionAliasAmbiguityException(ValueError, StackStormBaseException): |
||
24 | def __init__(self, msg, command, matches): |
||
25 | self.matches = matches |
||
26 | self.command = command |
||
27 | super(ActionAliasAmbiguityException, self).__init__(msg) |
||
28 |