summaryrefslogtreecommitdiff
path: root/lib/racc/exception.rb
blob: c11dc2e43e1e198b7fe08c509411e98436df1a87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#--
#
#
#
# Copyright (c) 1999-2006 Minero Aoki
#
# This program is free software.
# You can distribute/modify this program under the same terms of ruby.
# see the file "COPYING".
#
#++

module Racc
  class Error < StandardError; end
  class CompileError < Error; end
end