mapmanager cleanup
This commit is contained in:
committed by
Steffen Schröder
parent
be4d96fa22
commit
02b0a0dec0
@ -15,6 +15,10 @@ class FaultException extends Exception
|
||||
{
|
||||
case 'Login unknown.':
|
||||
return new LoginUnknownException($faultString, $faultCode);
|
||||
case 'Unable to write the playlist file.':
|
||||
return new CouldNotWritePlaylistFileException($faultString, $faultCode);
|
||||
case 'Start index out of bound.':
|
||||
return new StartIndexOutOfBoundException($faultString, $faultCode);
|
||||
}
|
||||
|
||||
return new self($faultString, $faultCode);
|
||||
@ -22,5 +26,6 @@ class FaultException extends Exception
|
||||
}
|
||||
|
||||
class LoginUnknownException extends FaultException {}
|
||||
|
||||
class CouldNotWritePlaylistFileException extends FaultException {}
|
||||
class StartIndexOutOfBoundException extends FaultException {}
|
||||
?>
|
||||
|
Reference in New Issue
Block a user