Sha256: 8e2fc526afa497c8b382cf68291006fdf2b6de6da112cb077aa4f96bff8050c9

Contents?: true

Size: 582 Bytes

Versions: 5

Compression:

Stored size: 582 Bytes

Contents

#!/usr/bin/env ruby -w
# encoding: UTF-8
#
# = TjException.rb -- The TaskJuggler III Project Management Software
#
# Copyright (c) 2006, 2007, 2008, 2009, 2010 by Chris Schlaeger <cs@kde.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of version 2 of the GNU General Public License as
# published by the Free Software Foundation.
#

class TaskJuggler

  class TjException < RuntimeError

    attr_reader :error, :fatal

    def initialize(error = true, fatal = false)
      @error = error
      @fatal = fatal
    end

  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
taskjuggler-0.0.8 lib/TjException.rb
taskjuggler-0.0.7 lib/TjException.rb
taskjuggler-0.0.6 lib/TjException.rb
taskjuggler-0.0.5 lib/TjException.rb
taskjuggler-0.0.4 lib/TjException.rb