CacheException.php 162 B

12345678910
  1. <?php
  2. namespace Psr\Cache;
  3. /**
  4. * Exception interface for all exceptions thrown by an Implementing Library.
  5. */
  6. interface CacheException extends \Throwable
  7. {
  8. }