class MLClient::MLClientError

MLClient is the base error from which all other more specific errors

Attributes

message[RW]

Public Class Methods

new(message = nil) click to toggle source
Calls superclass method
# File lib/ml_client/errors.rb, line 8
def initialize(message = nil)
  @message = message
  super
end