Sha256: f111aa46ff2fc65d4f62dfc2376278ec6d04b9a324cf08c82650c5a8f5e343a6
Contents?: true
Size: 403 Bytes
Versions: 6
Compression:
Stored size: 403 Bytes
Contents
module Pupu class PupuRootNotFound < StandardError end class PluginNotFoundError < StandardError end class PluginIsAlreadyInstalled < StandardError end class MediaDirectoryNotExist < StandardError end class AssetNotFound < StandardError attr_accessor :path, :message def initialize(path) @path = path @message = "File #{@path} doesn't exist." end end end
Version data entries
6 entries across 6 versions & 1 rubygems