Mercurial > dive4elements > river
changeset 214:29c6d9573ae7
Added a new exception class that is used to be thrown after artifact / collection operation specific errors.
flys-client/trunk@1656 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Fri, 08 Apr 2011 08:45:15 +0000 |
parents | 7ea004d0ffbc |
children | e02f50a3ad59 |
files | flys-client/ChangeLog flys-client/src/main/java/de/intevation/flys/client/shared/exceptions/ServerException.java |
diffstat | 2 files changed, 23 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/flys-client/ChangeLog Thu Apr 07 11:31:19 2011 +0000 +++ b/flys-client/ChangeLog Fri Apr 08 08:45:15 2011 +0000 @@ -1,3 +1,9 @@ +2011-04-08 Ingo Weinzierl <ingo@intevation.de> + + * src/main/java/de/intevation/flys/client/shared/exceptions/ServerException.java: + New. This exception is used to be thrown after an error occured while + one of the artifact / collection operations. + 2011-04-07 Ingo Weinzierl <ingo@intevation.de> * src/main/java/de/intevation/flys/client/server/ChartOutputServiceImpl.java,
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/shared/exceptions/ServerException.java Fri Apr 08 08:45:15 2011 +0000 @@ -0,0 +1,17 @@ +package de.intevation.flys.client.shared.exceptions; + +import java.io.Serializable; + + +public class ServerException +extends Exception +implements Serializable +{ + public ServerException() { + } + + + public ServerException(String msg) { + super(msg); + } +}