dblock/heroku-commander

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

Summary

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

        def initialize
          super(compose_message("missing_command_error"))
        end

      end
    end
  end
end