class Reivt::LoginException

Custom error for dealing with users who aren't logged in

@author [firaga]

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/reivt/exception.rb, line 49
def initialize
  msg = 'LoginException: Run ' + Paint['revit login', :yellow] + ' first.'
  super(msg)
end