Sha256: 5b79d85f6a4a6209184663d7ce4236419f30741036bdaa4ed13256c36fdacafe

Contents?: true

Size: 393 Bytes

Versions: 4

Compression:

Stored size: 393 Bytes

Contents

module BB
  # A general BB exception
  class Error < StandardError; end

  # Raised when using relation methods without calling required arguments.
  class ArgumentError < Error; end

  # Raised when behavior is not implemented, usually used in an abstract class.
  class NotImplementedError < Error; end

  # Raised when using evaluation methods
  class UnevaluableTypeError < Error; end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
b_b-0.1.3 lib/b_b/exception.rb
b_b-0.1.2 lib/b_b/exception.rb
b_b-0.1.1 lib/b_b/exception.rb
b_b-0.1.0 lib/b_b/exception.rb