/*
 * AxisObject.java
 *
 * Originated by Stoneware, Inc.  http://www.stone-ware.com
 *
 * The enclosed material is Stoneware Confidential and is the sole
 * property of Stoneware, Inc.  Unauthorized disclosure, distribution
 * or other use of this material is expressly prohibited.
 *
 * (c) Copyright 1999-2003 Stoneware, Inc.  All rights reserved.
 *
 * Created on March 28, 2003, 3:52 PM
 *
 * @author  <a href="mailto:Tony.Thompson@stone-ware.com">Tony Thompson</a>
 */

package com.stoneware.client;

/**
 *
 */
public class AxisObject {
    private String      m_message;

    public AxisObject() {
    }

    /***************************************************************************/
    /**
     * Creates a new instance of AxisObject.
     */
    public AxisObject( final String message ) {
        m_message = message;
    }

    public final String getMessage() {
        return m_message;
    }
}