class Pione::Package::NotFound

NotFound is raised when package not found in package database.

Public Class Methods

new(name, editor, tag) click to toggle source
# File lib/pione/package/package-exception.rb, line 7
def initialize(name, editor, tag)
  @name = name
  @editor = editor
  @tag = tag
end

Public Instance Methods

message() click to toggle source
# File lib/pione/package/package-exception.rb, line 13
def message
  "the package(name: %s, editor: %s, tag: %s) not found" % [@name, @editor, @tag]
end