Add exception classes for Source Plugins

This commit is contained in:
2012-01-10 01:31:42 +00:00
parent a26967a272
commit 37bb0dde39

View File

@@ -0,0 +1,10 @@
<?php
class DownloadDispatcher_Exception_SourcePluginException extends DownloadDispatcher_Exception {};
class DownloadDispatcher_Exception_PreviouslySeenContent extends DownloadDispatcher_Exception_SourcePluginException {};
class DownloadDispatcher_Exception_UnidentifiedContent extends DownloadDispatcher_Exception_SourcePluginException {};
class DownloadDispatcher_Exception_UnacceptableContent extends DownloadDispatcher_Exception_SourcePluginException {};
class DownloadDispatcher_Exception_DuplicateContent extends DownloadDispatcher_Exception_SourcePluginException {};
class DownloadDispatcher_Exception_UnprocesseableContent extends DownloadDispatcher_Exception_SourcePluginException {};
?>