Sha256: b9385a56166984163d3ad08fbf45565dbbe406ca4895ea21fb14d14a35268c17
Contents?: true
Size: 685 Bytes
Versions: 76
Compression:
Stored size: 685 Bytes
Contents
module Clamp class DeclarationError < StandardError end class RuntimeError < StandardError def initialize(message, command) super(message) @command = command end attr_reader :command end # raise to signal incorrect command usage class UsageError < RuntimeError; end # raise to request usage help class HelpWanted < RuntimeError def initialize(command) super("I need help", command) end end # raise to signal error during execution class ExecutionError < RuntimeError def initialize(message, command, status = 1) super(message, command) @status = status end attr_reader :status end end
Version data entries
76 entries across 72 versions & 18 rubygems