dblock/heroku-commander

View on GitHub
lib/heroku/commander/errors/invalid_option_error.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Heroku
  class Commander
    module Errors
      class InvalidOptionError < Heroku::Commander::Errors::Base

        def initialize(opts = {})
          super(compose_message("invalid_option", opts))
        end

      end
    end
  end
end