mirror of
https://github.com/wiosna-dev/limesurvey-api-client.git
synced 2026-03-12 10:11:49 +01:00
Add required "className" constants with full names of classes
This commit is contained in:
@@ -16,6 +16,8 @@ namespace Meritoo\Common\Exception\File;
|
|||||||
*/
|
*/
|
||||||
class EmptyFileException extends \Exception
|
class EmptyFileException extends \Exception
|
||||||
{
|
{
|
||||||
|
const className = 'Meritoo\Common\Exception\File\EmptyFileException';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class constructor
|
* Class constructor
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -16,6 +16,8 @@ namespace Meritoo\Common\Exception\File;
|
|||||||
*/
|
*/
|
||||||
class EmptyFilePathException extends \Exception
|
class EmptyFilePathException extends \Exception
|
||||||
{
|
{
|
||||||
|
const className = 'Meritoo\Common\Exception\File\EmptyFilePathException';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class constructor
|
* Class constructor
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -16,6 +16,8 @@ namespace Meritoo\Common\Exception\File;
|
|||||||
*/
|
*/
|
||||||
class NotExistingFileException extends \Exception
|
class NotExistingFileException extends \Exception
|
||||||
{
|
{
|
||||||
|
const className = 'Meritoo\Common\Exception\File\NotExistingFileException';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class constructor
|
* Class constructor
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ use Exception;
|
|||||||
*/
|
*/
|
||||||
class DisabledMethodException extends Exception
|
class DisabledMethodException extends Exception
|
||||||
{
|
{
|
||||||
const className = '\Meritoo\Common\Exception\Method\DisabledMethodException';
|
const className = 'Meritoo\Common\Exception\Method\DisabledMethodException';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class constructor
|
* Class constructor
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ namespace Meritoo\Common\Exception\Regex;
|
|||||||
*/
|
*/
|
||||||
class InvalidUrlException extends \Exception
|
class InvalidUrlException extends \Exception
|
||||||
{
|
{
|
||||||
const className = '\Meritoo\Common\Exception\Regex\InvalidUrlException';
|
const className = 'Meritoo\Common\Exception\Regex\InvalidUrlException';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class constructor
|
* Class constructor
|
||||||
|
|||||||
Reference in New Issue
Block a user