mapmanager cleanup

This commit is contained in:
kremsy
2014-04-19 22:44:59 +02:00
committed by Steffen Schröder
parent be4d96fa22
commit 02b0a0dec0
2 changed files with 163 additions and 168 deletions

View File

@ -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 {}
?>