class Abstrakt::Exceptions::InstantiationError

Public Class Methods

new(object) click to toggle source
Calls superclass method
# File lib/abstrakt/exceptions.rb, line 11
def initialize(object)
  super("class '#{object}' can not be instantiated")
end