ArchiveBase.error

Calls the errorCallback with an exception.

Call this method when some type of error occurred, like a field cannot be found.

  1. void error(string message, string[] data, string file, size_t line)
    class ArchiveBase(U)
    protected
    void
    error
    (
    string message
    ,
    string[] data = null
    ,
    string file = __FILE__
    ,
    size_t line = __LINE__
    )
  2. void error(Exception exception)

Parameters

message string

the message for the exception

data string[]

the data for the exception

file string

the file where the error occurred

line size_t

the line where the error occurred

Meta