phalcon/cphalcon · error · Phalcon\Queue\Exceptions\Exception
{underlying Storage exception message}
Error message
{underlying Storage exception message} What it means
Error "{underlying Storage exception message}" thrown in phalcon/cphalcon.
Source
Thrown at phalcon/Queue/Adapter/Redis/RedisConnectionFactory.zep:97
let adapter = new StorageRedis(
new SerializerFactory(),
array_merge(
options,
[
"prefix" : "",
"defaultSerializer" : "none"
]
)
);
/**
* Surface connect/auth/select failures as a queue exception so every
* adapter honors the QueueThrowable contract.
*/
try {
let redis = adapter->getAdapter();
} catch StorageException, e {
throw new Exception(e->getMessage(), (int) e->getCode(), e);
}
return new RedisContext(redis, prefix, pollInterval);
}
}
View on GitHub (pinned to b7419de9cd)
When it happens
Trigger: Thrown at phalcon/Queue/Adapter/Redis/RedisConnectionFactory.zep:97 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of phalcon/cphalcon@b7419de9cd (2026-08-21).
Data as JSON: /api/errors/ef715099c58a3f14.
Report an issue: GitHub.