/*
 *
 * Copyright (c) 2007
 * Adrian Michel
 * http://www.tradery.com
 *
 * Permission to use, copy, modify, distribute and sell this software
 * and its documentation for any purpose is hereby granted without fee,
 * provided that the above copyright notice appear in all copies and
 * that both that copyright notice and this permission notice appear
 * in supporting documentation.  Adrian Michel makes no
 * representations about the suitability of this software for any
 * purpose.  It is provided "as is" without express or implied warranty.
*/

package com.tradery.contentmodel;

import com.tradery.contract.Contract;

/***********************************************
 * exception thrown if the content model is ambiguous
 **********************************************/
public class AmbiguousContentModelException extends Exception
{
  private String name = null;
  private String message = null;

  public AmbiguousContentModelException( String _name, String _message )
  {
    name = _name;
    message = _message;
  }

  public String getName()
  {
    return name;
  }
  public String getMessage()
  {
    return message;
  }
}