Exception: Gollum::DuplicatePageError
- Defined in:
- lib/gollum-lib.rb
Instance Attribute Summary collapse
-
#attempted_path ⇒ Object
Returns the value of attribute attempted_path.
-
#dir ⇒ Object
Returns the value of attribute dir.
-
#existing_path ⇒ Object
Returns the value of attribute existing_path.
Instance Method Summary collapse
-
#initialize(dir, existing, attempted, message = nil) ⇒ DuplicatePageError
constructor
A new instance of DuplicatePageError.
Constructor Details
#initialize(dir, existing, attempted, message = nil) ⇒ DuplicatePageError
Returns a new instance of DuplicatePageError.
61 62 63 64 65 66 |
# File 'lib/gollum-lib.rb', line 61 def initialize(dir, existing, attempted, = nil) @dir = dir @existing_path = existing @attempted_path = attempted super( || "Cannot write #{@dir}/#{@attempted_path}, found #{@dir}/#{@existing_path}.") end |
Instance Attribute Details
#attempted_path ⇒ Object
Returns the value of attribute attempted_path.
59 60 61 |
# File 'lib/gollum-lib.rb', line 59 def attempted_path @attempted_path end |
#dir ⇒ Object
Returns the value of attribute dir.
57 58 59 |
# File 'lib/gollum-lib.rb', line 57 def dir @dir end |
#existing_path ⇒ Object
Returns the value of attribute existing_path.
58 59 60 |
# File 'lib/gollum-lib.rb', line 58 def existing_path @existing_path end |