Sha256: 9ff4b606a26c9a2d491e001c45170213558b83097c1f84c29a6b0959c61c9408
Contents?: true
Size: 617 Bytes
Versions: 14
Compression:
Stored size: 617 Bytes
Contents
# # $Id: exception.rb 3881 2008-02-09 14:44:17Z aamine $ # # Copyright (c) 2002-2007 Minero Aoki # # This program is free software. # You can distribute or modify this program under the terms of # the GNU LGPL, Lesser General Public License version 2.1. # For details of the GNU LGPL, see the file "COPYING". # module ReVIEW class Error < ::StandardError; end class ApplicationError < Error; end class ConfigError < ApplicationError; end class CompileError < ApplicationError; end class SyntaxError < CompileError; end class FileNotFound < ApplicationError; end class KeyError < CompileError; end end
Version data entries
14 entries across 14 versions & 2 rubygems