return ECA_INTERNAL when the caught exception type is unknown

This commit is contained in:
Jeff Hill
2003-03-10 22:12:51 +00:00
parent 5f80d74a79
commit 4de99e49e7

View File

@@ -554,7 +554,7 @@ int epicsShareAPI ca_array_put_callback ( chtype type, arrayElementCount count,
}
catch ( ... )
{
caStatus = ECA_PUTFAIL;
caStatus = ECA_INTERNAL;
}
return caStatus;
}
@@ -610,7 +610,7 @@ int epicsShareAPI ca_array_put ( chtype type, arrayElementCount count,
}
catch ( ... )
{
caStatus = ECA_PUTFAIL;
caStatus = ECA_INTERNAL;
}
return caStatus;
}