/** * Copyright (c) 2009-2011, The HATS Consortium. All rights reserved. * This file is licensed under the terms of the Modified BSD License. */ package org.absmodels.abs.plugin.exceptions; public class NoABSNatureException extends Exception{ private static final long serialVersionUID = 7425548648309729481L; public NoABSNatureException(){ } public NoABSNatureException(String message){ super(message); } }