46 lines
796 B
PHP
46 lines
796 B
PHP
<?php
|
|
|
|
|
|
namespace manager;
|
|
|
|
|
|
abstract class ManagerError{
|
|
|
|
/* SUCCESS */
|
|
const Success = 0;
|
|
|
|
/* Parsage json */
|
|
const ParsingFailed = 1;
|
|
|
|
/* ResourceDispatcher */
|
|
|
|
// Drapeaux invalides
|
|
const InvalidFlags = 2;
|
|
|
|
// Fichier inexistant
|
|
const FileNotFound = 3;
|
|
|
|
|
|
/* ModuleRequest */
|
|
|
|
// Le @path n'est pas renseigne
|
|
const MissingPath = 4;
|
|
|
|
// Le @path n'est pas du bon type
|
|
const WrongPathType = 5;
|
|
|
|
// Verification de la coherence du chemin (existe dans la conf)
|
|
const WrongPath = 6;
|
|
|
|
// Module non specifie dans la conf
|
|
const UnknownModule = 7;
|
|
|
|
// Methode non specifie pour ce Module dans la conf
|
|
const UnknownMethod = 8;
|
|
|
|
// Methode inamorcable
|
|
const UncallableMethod = 9;
|
|
|
|
}
|
|
|
|
?>
|