Exception: Reivt::LoginException

Inherits:
StandardError
  • Object
show all
Defined in:
lib/reivt/exception.rb

Overview

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

Author:

  • firaga

Instance Method Summary collapse

Constructor Details

#initializeLoginException

Returns a new instance of LoginException.



47
48
49
50
# File 'lib/reivt/exception.rb', line 47

def initialize
  msg = 'LoginException: Run ' + Paint['revit login', :yellow] + ' first.'
  super(msg)
end