/*
 * Created on Jul 2, 2008 (C) Copyright TANDBERG Television Ltd.
 */

package com.tandbergtv.watchpoint.pmm.communication;

/**
 * A class containing the list of error codes
 * 
 * @author Vijay Silva
 */
public final class HandlerErrorCode {

	/* Cannot instantiate */
	private HandlerErrorCode() {
	}

	/** Error Code for unexpected error */
	public static final String RUNTIME_ERROR = "ERR-001";

	/** Error Code for invalid inputs in the message */
	public static final String INVALID_INPUT = "ERR-002";

	/** Error Code for failure getting the Title */
	public static final String OBJECT_NOT_PRESENT = "ERR-003";
}
