mirror of
https://github.com/rails/execjs
synced 2023-03-27 23:21:20 -04:00
7 lines
170 B
Ruby
7 lines
170 B
Ruby
module ExecJS
|
|
class Error < ::StandardError; end
|
|
class RuntimeError < Error; end
|
|
class ProgramError < Error; end
|
|
|
|
autoload :Runtimes, "execjs/runtimes"
|
|
end
|