Skip to content

Commit

Permalink
Merge pull request #30 from chadicus/master
Browse files Browse the repository at this point in the history
Add NotSupportedException
  • Loading branch information
chadicus committed Nov 19, 2019
2 parents fa35f6d + f2c3d7d commit a275500
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/NotSupportedException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

namespace SubjectivePHP\Spl\Exceptions;

use RuntimeException;

/**
* Exception thrown if a requested operation is not supported.
*/
class NotSupportedException extends RuntimeException
{
}

0 comments on commit a275500

Please sign in to comment.