class EvalIn::BadLanguageError

Raised when EvalIn.{EvalIn.eval} is given a bad input language.

Public Class Methods

new(lang) click to toggle source
Calls superclass method
# File lib/eval-in/exceptions.rb, line 17
def initialize(lang)
  super "No such language: #{lang}"
end