class AbstractClassError

An error representing an erroneous instantiation of an abstract class.

Public Class Methods

new(class_name) click to toggle source
Calls superclass method
# File lib/filigree/abstract_class.rb, line 20
def initialize(class_name)
        super "Instantiating abstract class #{class_name} is not allowed."
end