class CvpApiError

General error for CVP requests

Public Class Methods

new(msg = 'Unknown error') click to toggle source
Calls superclass method
# File lib/cvprac/client_errors.rb, line 64
def initialize(msg = 'Unknown error')
  super("ERROR: #{msg}")
end