Sha256: f4cb8187ab9525964e4bf889ddc643843f20b5f56120f3a1940cf1bde0b4788d

Contents?: true

Size: 230 Bytes

Versions: 2

Compression:

Stored size: 230 Bytes

Contents

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
one_password-0.0.2 lib/one_password/errors.rb
one_password-0.0.1 lib/one_password/errors.rb