001package org.dllearner.server.jaxws;
002
003import javax.xml.bind.annotation.XmlAccessType;
004import javax.xml.bind.annotation.XmlAccessorType;
005import javax.xml.bind.annotation.XmlRootElement;
006import javax.xml.bind.annotation.XmlType;
007
008/**
009 * This class was generated by the JAX-WS RI.
010 * JAX-WS RI 2.1.1
011 * Generated source version: 2.1.1
012 * 
013 */
014@XmlRootElement(name = "ClientNotKnownException", namespace = "http://server.dllearner.org/")
015@XmlAccessorType(XmlAccessType.FIELD)
016@XmlType(name = "ClientNotKnownException", namespace = "http://server.dllearner.org/")
017public class ClientNotKnownExceptionBean {
018
019    private String message;
020
021    /**
022     * 
023     * @return
024     *     returns String
025     */
026    public String getMessage() {
027        return this.message;
028    }
029
030    /**
031     * 
032     * @param message
033     *     the value for the message property
034     */
035    public void setMessage(String message) {
036        this.message = message;
037    }
038
039}