class Cl::Error

Constants

MSGS

Public Class Methods

new(msg, *args) click to toggle source
Calls superclass method
# File lib/cl/errors.rb, line 21
def initialize(msg, *args)
  super(MSGS[msg] ? MSGS[msg] % args : msg)
end