package uk.ac.vamsas.client.picking; /** * Defines a custom message that applications can use to send message types that * haven't been predefined in the API. */ public class CustomMessage extends Message { /** * Constructs a new custom message. * @param message the message to be sent */ public CustomMessage(String message) { this.message = "CUSTOM_" + message; } }