diff options
Diffstat (limited to 'lib/leap_cli/exceptions.rb')
-rw-r--r-- | lib/leap_cli/exceptions.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/leap_cli/exceptions.rb b/lib/leap_cli/exceptions.rb new file mode 100644 index 0000000..cd27f14 --- /dev/null +++ b/lib/leap_cli/exceptions.rb @@ -0,0 +1,11 @@ +module LeapCli + + class ConfigError < StandardError + attr_accessor :node + def initialize(node, msg) + @node = node + super(msg) + end + end + +end
\ No newline at end of file |