Table of Contents

Constructor Neo4jException

Namespace
Neo4j.Driver
Assembly
Neo4j.Driver.dll

Neo4jException()

Create a new Neo4jException

public Neo4jException()

Neo4jException(string)

Create a new Neo4jException with an error message

public Neo4jException(string message)

Parameters

message string

The error message.

Neo4jException(string, string)

Create a new Neo4jException with an error code and an error message

public Neo4jException(string code, string message)

Parameters

code string

The error code.

message string

The error message

Neo4jException(string, Exception)

Create a new Neo4jException with an error message and an exception.

public Neo4jException(string message, Exception innerException)

Parameters

message string

The error message.

innerException Exception

The inner exception

Neo4jException(string, string, Exception)

Create a new Neo4jException with an error code, an error message and an exception.

public Neo4jException(string code, string message, Exception innerException)

Parameters

code string

The error code.

message string

The error message.

innerException Exception

The inner exception.