class Akabei::Package::NotFound

Attributes

archive[R]
path[R]

Public Class Methods

new(archive, path) click to toggle source
Calls superclass method
# File lib/akabei/package.rb, line 13
def initialize(archive, path)
  super("#{path} is not found in #{archive}")
  @path = path
  @archive = archive
end