001package com.hfg.chem;
002
003//------------------------------------------------------------------------------
004/**
005 Indicates an exception due to the violation of physical chemical principles.
006 * @author J. Alex Taylor, hairyfatguy.com
007 */
008//------------------------------------------------------------------------------
009// com.hfg XML/HTML Coding Library
010//
011// This library is free software; you can redistribute it and/or
012// modify it under the terms of the GNU Lesser General Public
013// License as published by the Free Software Foundation; either
014// version 2.1 of the License, or (at your option) any later version.
015//
016// This library is distributed in the hope that it will be useful,
017// but WITHOUT ANY WARRANTY; without even the implied warranty of
018// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
019// Lesser General Public License for more details.
020//
021// You should have received a copy of the GNU Lesser General Public
022// License along with this library; if not, write to the Free Software
023// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
024//
025// J. Alex Taylor, President, Founder, CEO, COO, CFO, OOPS hairyfatguy.com
026// jataylor@hairyfatguy.com
027//------------------------------------------------------------------------------
028
029public class MolecularStructureException extends RuntimeException
030{
031   //---------------------------------------------------------------------------
032   public MolecularStructureException(String inMessage)
033   {
034      super(inMessage);
035   }
036
037   //---------------------------------------------------------------------------
038   public MolecularStructureException(String inMessage, Throwable inException)
039   {
040      super(inMessage, inException);
041   }
042
043   //---------------------------------------------------------------------------
044   public MolecularStructureException(Throwable inException)
045   {
046      super(inException);
047   }
048
049}