package com.tinkerpop.rexster.protocol.msg; /** * @author Stephen Mallette (http://stephen.genoprime.com) * @author Blake Eggleston (bdeggleston.github.com) */ public final class MessageTokens { public static final String ERROR_INVALID_TAG = "The message has an invalid flag."; public static final String ERROR_SESSION_NOT_SPECIFIED = "The message does not specify a session."; public static final String ERROR_SESSION_INVALID = "The session on the request does not exist or has otherwise expired."; public static final String ERROR_IN_SCRIPT_PROCESSING = "An error occurred while processing the script for language [%s]. All transactions across all graphs in the session have been concluded with failure: %s"; public static final String ERROR_UNEXPECTED_MESSAGE_TYPE = "Message did not match an expected type."; public static final String ERROR_GRAPH_REDEFINITION = "A graph name has already been defined on this session"; public static final String ERROR_CHANNEL_REDEFINITION = "A channel has already been defined on this session"; public static final String ERROR_RESULT_SERIALIZATION = "Script was successfully executed but the result of the script was not properly serialized."; }