package uk.ac.vamsas.client.picking; /** * Abstract base class for all message types supported by the picking API. */ public abstract class Message { protected String message; /** * Constructs a new message. */ protected Message() { } /** * Returns the raw message content as a string. * @return the raw message content as a string */ public String getRawMessage() { return message; } }