class Pione::Front::FrontServerError
FrontError is raised when front server cannnot start.
Public Class Methods
new(front, exception)
click to toggle source
# File lib/pione/front/front-exception.rb, line 8 def initialize(front, exception) @front = front @exception = exception end
Public Instance Methods
message()
click to toggle source
# File lib/pione/front/front-exception.rb, line 13 def message "You couldn't start front server(%s): %s" % [@front.class.name, @exception.message] end