mirror of
https://github.com/silverstripe/silverstripe-dms
synced 2024-10-22 14:05:56 +02:00
9 lines
194 B
PHP
9 lines
194 B
PHP
<?php
|
|
/**
|
|
* Simple exception extension so that we can tell the difference between internally
|
|
* raised exceptions and those thrown by DMS.
|
|
*/
|
|
class FileNotFoundException extends Exception
|
|
{
|
|
}
|