N°3663 Group exception classes in /application/exceptions

Original files kept for compatibility issues :
- core/coreexception.class.inc.php

There are remaining exceptions in /core/oql, but those files are generated
This commit is contained in:
Pierre Goiffon
2021-01-26 10:46:49 +01:00
parent 5762ac38a7
commit b85b4d0067
52 changed files with 624 additions and 634 deletions

View File

@@ -255,29 +255,3 @@ abstract class AbstractWeeklyScheduledProcess implements iScheduledProcess
*/
abstract public function Process($iUnixTimeLimit);
}
/**
* Exception for {@link iProcess} implementations.<br>
* An error happened during the processing but we can go on with the next implementations.
* @since 2.5.0 N°1195
*/
class ProcessException extends CoreException
{
}
/**
* @since 2.7.0 PR #89
*/
class ProcessInvalidConfigException extends ProcessException
{
}
/**
* Class ProcessFatalException
* Exception for iProcess implementations.<br>
* A big error occurred, we have to stop the iProcess processing.
* @since 2.5.0 N°1195
*/
class ProcessFatalException extends CoreException
{
}