view flys-client/src/main/java/de/intevation/flys/client/shared/exceptions/ServerException.java @ 5714:1103308b19ca

Add toJavaEncodedString function to encode strings in utf-16 notation used by java. This fixes printing of unicode characters.
author Andre Heinecke <aheinecke@intevation.de>
date Mon, 15 Apr 2013 11:34:28 +0200
parents 29c6d9573ae7
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