alsemyonov/one_password

View on GitHub
lib/one_password/errors.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OnePassword
  class Error < StandardError
  end

  class UndefinedProfile < Error
    def initialize(profile_name)
      super "Undefined profile #{profile_name.inspect}"
    end
  end

  class NoPassword < Error
  end
end