declare enum ErrorCode {
    NotImplemented = "NotImplemented",
    NotSupported = "NotSupported",
    InternalError = "InternalError",
    ProtocolError = "ProtocolError",
    SecurityError = "SecurityError",
    FormationViolation = "FormationViolation",
    PropertyConstraintViolation = "PropertyConstraintViolation",
    OccurenceConstraintViolation = "OccurenceConstraintViolation",
    TypeConstraintViolation = "TypeConstraintViolation",
    GenericError = "GenericError"
}
export default ErrorCode;
