# HG changeset patch # User Ingo Weinzierl # Date 1302252315 0 # Node ID 29c6d9573ae74ff95613b639e4e1668e053d87b2 # Parent 7ea004d0ffbcca0502d36be7e7c437f999d2ae5d 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 diff -r 7ea004d0ffbc -r 29c6d9573ae7 flys-client/ChangeLog --- 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 + + * 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 * src/main/java/de/intevation/flys/client/server/ChartOutputServiceImpl.java, diff -r 7ea004d0ffbc -r 29c6d9573ae7 flys-client/src/main/java/de/intevation/flys/client/shared/exceptions/ServerException.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); + } +}