class ActiveTree::Store::StoreException
Public Class Methods
new(msg="This is a custom exception", exception_type="custom")
click to toggle source
Calls superclass method
# File lib/active_tree/store.rb, line 6 def initialize(msg="This is a custom exception", exception_type="custom") @exception_type = exception_type super(msg) end