view flys-client/src/main/java/de/intevation/flys/client/shared/exceptions/ServerException.java @ 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
children
line wrap: on
line source
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);
    }
}

http://dive4elements.wald.intevation.org