Sha256: d98f6b96e45db9b04c053ac2b686c4e8c9b5969eca009b4c35cb18d0980eb938
Contents?: true
Size: 343 Bytes
Versions: 13
Compression:
Stored size: 343 Bytes
Contents
module Aruba # Standard error class Error < StandardError; end # An error because a user of the API did something wrong class UserError < StandardError; end # Raised on launch error class LaunchError < Error; end # Raised if one tries to use an unknown configuration option class UnknownOptionError < ArgumentError; end end
Version data entries
13 entries across 13 versions & 1 rubygems