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

8 lines
170 B
Ruby
Raw Normal View History

2011-02-06 15:22:40 -05:00
module ExecJS
2011-02-06 19:59:37 -05:00
class Error < ::StandardError; end
class RuntimeError < Error; end
class ProgramError < Error; end
2011-02-06 15:22:40 -05:00
autoload :Runtimes, "execjs/runtimes"
end