class Reivt::BaemptyException

Custom errors for dealing with repos in revit

@author [bwrnrclse]

Public Class Methods

new(msg = 'Bare or Empty repo passed!') click to toggle source
Calls superclass method
# File lib/reivt/exception.rb, line 13
def initialize(msg = 'Bare or Empty repo passed!')
  msg = "BaemptyException:\n" + msg + "\nVisit here for more info => " \
        "#{Paint['link.vaemoi.co/revitbaempty', :yellow]}"
  super(msg)
end