Skip to content

Commit

Permalink
chore: interface naming improved
Browse files Browse the repository at this point in the history
  • Loading branch information
boajer committed Jan 13, 2022
1 parent 001edf8 commit c9b71fe
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -24,8 +24,8 @@
namespace qtism\common;

/**
* The ContentPackageExceptionInterface intended to help unify the exception handlers behavior
* The QtiSdkPackageContentException intended to help unify the exception handlers behavior
*/
interface ContentPackageExceptionInterface
interface QtiSdkPackageContentException
{
}
4 changes: 2 additions & 2 deletions src/qtism/data/results/DuplicateSourceIdException.php
Original file line number Diff line number Diff line change
@@ -24,11 +24,11 @@
namespace qtism\data\results;

use Exception;
use qtism\common\ContentPackageExceptionInterface;
use qtism\common\QtiSdkPackageContentException;

/**
* Class DuplicateSourceIdException
*/
class DuplicateSourceIdException extends Exception implements ContentPackageExceptionInterface
class DuplicateSourceIdException extends Exception implements QtiSdkPackageContentException
{
}

0 comments on commit c9b71fe

Please sign in to comment.