class Mondido::Exceptions::ValidationException

Public Class Methods

new(err) click to toggle source
Calls superclass method
# File lib/mondido/exceptions/validation_exception.rb, line 4
def initialize(err)
  match = err.match(/.+\s(.+)/)
  error = match[1]
  super(error)
end