1
0
Fork 0
mirror of https://github.com/rails/execjs synced 2023-03-27 23:21:20 -04:00
execjs/lib/execjs.rb
2011-02-06 18:59:37 -06:00

7 lines
170 B
Ruby

module ExecJS
class Error < ::StandardError; end
class RuntimeError < Error; end
class ProgramError < Error; end
autoload :Runtimes, "execjs/runtimes"
end