blob: b70a4dddf86137eac4a47e67a1e3a5e09ac8cd05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
module Puppet # :nodoc:
# The base class for all Puppet errors. We want to make it easy to add
# line and file information. This probably isn't necessary for all
# errors, but...
class Error < RuntimeError
attr_accessor :line, :file
def backtrace
if defined? @backtrace
return @backtrace
else
return super
end
end
def initialize(message, line = nil, file = nil)
@message = message
@line = line if line
@file = file if file
end
def to_s
str = nil
if defined? @file and defined? @line and @file and @line
str = "%s at %s:%s" %
[@message.to_s, @file, @line]
elsif defined? @line and @line
str = "%s at line %s" %
[@message.to_s, @line]
else
str = @message.to_s
end
return str
end
end
# An error class for when I don't know what happened. Automatically
# prints a stack trace when in debug mode.
class DevError < Puppet::Error
# XXX This is probably the wrong way to do this, but...
def set_backtrace(trace)
if Puppet[:trace]
puts trace
end
super
end
end
end
# $Id$
|