fix exception

This commit is contained in:
Yurii
2026-01-13 11:34:37 +02:00
parent 1b469c0cfa
commit 049be51f9c
@@ -30,7 +30,7 @@
namespace Espo\Entities;
use Espo\Core\Field\DateTime;
use RuntimeException;
use Exception;
class ExternalAccount extends Integration
{
@@ -97,7 +97,7 @@ class ExternalAccount extends Integration
try {
return DateTime::fromString($raw);
} catch (RuntimeException) {
} catch (Exception) {
return null;
}
}