Sha256: 54edced69f2e60583d6ff2bab2eec6be95427a1f9ae3a6e993d3ce6726424f39

Contents?: true

Size: 301 Bytes

Versions: 1

Compression:

Stored size: 301 Bytes

Contents

module Hanami
  class CLI
    # @since 0.2.0
    class Error < StandardError
    end

    # @since 0.2.0
    class UnkwnownCommandError < Error
      # @since 0.2.0
      # @api private
      def initialize(command_name)
        super("unknown command: `#{command_name}'")
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hanami-cli-0.2.0.beta1 lib/hanami/cli/errors.rb