1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15:
<?php
namespace qdb;
/**
* Thrown when an operation cannot be perform because it has been disabled in the cluster configuration.
*
* @example
* <code>
* $cluster->purgeAll(); // throws QdbOperationDisabledException
* </code>
*/
final class QdbOperationDisabledException extends QdbOperationException
{
}
?>