Sha256: 7a8fe6105e629df73fc9fc9032185dd7d17d70dab35699a40c3d7d39d98ee703
Contents?: true
Size: 422 Bytes
Versions: 7
Compression:
Stored size: 422 Bytes
Contents
# encoding: utf-8 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
7 entries across 7 versions & 1 rubygems