class TaskJuggler::TjException

Attributes

error[R]
fatal[R]

Public Class Methods

new(error = true, fatal = false) click to toggle source
# File lib/taskjuggler/TjException.rb, line 20
def initialize(error = true, fatal = false)
  @error = error
  @fatal = fatal
end