Neo4jClient.NeoException.NeoException C# (CSharp) Method

NeoException() private method

private NeoException ( ExceptionResponse response ) : System
response Neo4jClient.ApiModels.ExceptionResponse
return System
        internal NeoException(ExceptionResponse response)
            : base(response.Exception + ": " + response.Message)
        {
            neoMessage = response.Message;
            neoException = response.Exception;
            neoFullName = response.FullName;
            neoStackTrace = response.StackTrace;
        }
NeoException