Home
last modified time | relevance | path

Searched refs:NewTApplicationException (Results 1 – 6 of 6) sorted by relevance

/thrift-3.4.0/lib/go/thrift/
Dapplication_exception_test.go27 exc := NewTApplicationException(UNKNOWN_APPLICATION_EXCEPTION, "")
34 exc = NewTApplicationException(WRONG_METHOD_NAME, "junk_method")
Dclient.go63 return NewTApplicationException(WRONG_METHOD_NAME, fmt.Sprintf("%s: wrong method name", method))
65 …return NewTApplicationException(BAD_SEQUENCE_ID, fmt.Sprintf("%s: out of order sequence response",…
78 …return NewTApplicationException(INVALID_MESSAGE_TYPE_EXCEPTION, fmt.Sprintf("%s: invalid message t…
Dexception_test.go28 err := NewTApplicationException(INTERNAL_ERROR, "original error")
Dexception.go52 return NewTApplicationException(t.TypeId(), msg)
Dheader_transport.go90 return nil, NewTApplicationException(
157 return NewTApplicationException(
213 return NewTApplicationException(
Dapplication_exception.go117 func NewTApplicationException(type_ int32, message string) TApplicationException { func