Sha256: f0af6d7f42fbad74f7d7c2273faffde0dbe64c371a81ec7b06e4ec2c3784ee6e

Contents?: true

Size: 981 Bytes

Versions: 237

Compression:

Stored size: 981 Bytes

Contents

class Thor
  # Thor::Error is raised when it's caused by wrong usage of thor classes. Those
  # errors have their backtrace suppressed and are nicely shown to the user.
  #
  # Errors that are caused by the developer, like declaring a method which
  # overwrites a thor keyword, it SHOULD NOT raise a Thor::Error. This way, we
  # ensure that developer errors are shown with full backtrace.
  class Error < StandardError
  end

  # Raised when a command was not found.
  class UndefinedCommandError < Error
  end
  UndefinedTaskError = UndefinedCommandError # rubocop:disable ConstantName

  class AmbiguousCommandError < Error
  end
  AmbiguousTaskError = AmbiguousCommandError # rubocop:disable ConstantName

  # Raised when a command was found, but not invoked properly.
  class InvocationError < Error
  end

  class UnknownArgumentError < Error
  end

  class RequiredArgumentMissingError < InvocationError
  end

  class MalformattedArgumentError < InvocationError
  end
end

Version data entries

237 entries across 233 versions & 22 rubygems

Version Path
bundler-prehistoric-1.6.2.2 lib/bundler/vendor/thor/error.rb
whos_dated_who-0.1.0 vendor/bundle/gems/thor-0.19.1/lib/thor/error.rb
bundler-1.6.3 lib/bundler/vendor/thor/error.rb
whos_dated_who-0.0.1 vendor/bundle/gems/thor-0.19.1/lib/thor/error.rb
bundler-prehistoric-1.6.2.1 lib/bundler/vendor/thor/error.rb
bundler-prehistoric-1.6.2 lib/bundler/vendor/thor/error.rb
bundler-1.6.2 lib/bundler/vendor/thor/error.rb
bundler-1.6.1 lib/bundler/vendor/thor/error.rb
bundler-1.6.0 lib/bundler/vendor/thor/error.rb
thor-0.19.1 lib/thor/error.rb
thor-0.19.0 lib/thor/error.rb
bundler-1.6.0.rc2 lib/bundler/vendor/thor/error.rb
bundler-1.6.0.rc lib/bundler/vendor/thor/error.rb
bundler-1.6.0.pre.2 lib/bundler/vendor/thor/error.rb
bundler-1.5.3 lib/bundler/vendor/thor/error.rb
bundler-1.6.0.pre.1 lib/bundler/vendor/thor/error.rb
bundler-1.5.2 lib/bundler/vendor/thor/error.rb