blob: f61b24c2b4bf7cd0379f6186042a07cc3c6ab4b2 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Psr\SimpleCache;
4
5/**
6 * Interface used for all types of exceptions thrown by the implementing library.
7 */
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +01008interface CacheException extends \Throwable
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02009{
10}