/** SpagoBI, the Open Source Business Intelligence suite Copyright (C) 2012 Engineering Ingegneria Informatica S.p.A. - SpagoBI Competency Center This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. **/ package it.eng.spagobi.studio.utils.exceptions; public class AlreadyPresentException extends Exception{ boolean alreadyPresent=false; String filePath=null; public AlreadyPresentException() { super(); // TODO Auto-generated constructor stub } public AlreadyPresentException(Exception e) { super(e); } public boolean isAlreadyPresent() { return alreadyPresent; } public void setAlreadyPresent(boolean alreadyPresent) { this.alreadyPresent = alreadyPresent; } public String getFilePath() { return filePath; } public void setFilePath(String filePath) { this.filePath = filePath; } }