/******************************************************************************** * * JOrocos Library * * Copyright (c) 2011 * All rights reserved. * * Luca Gherardi * University of Bergamo * Dept. of Information Technology and Mathematics * * ------------------------------------------------------------------------------- * * File: WrongUseOfConnectionException.java * Created: Jul 27, 2011 * * Author: <A HREF="mailto:luca.gherardi@unibg.it">Luca Gherardi</A> * * Supervised by: <A HREF="mailto:brugali@unibg.it">Davide Brugali</A> * * In cooperation with: <A HREF="mailto:herman.bruyninckx@mech.kuleuven.be">Herman Bruyninckx</A> * * ------------------------------------------------------------------------------- * * This sofware is published under a dual-license: GNU Lesser General Public * License LGPL 2.1 and BSD license. The dual-license implies that users of this * code may choose which terms they prefer. * * ------------------------------------------------------------------------------- * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * - Neither the name of the University of Bergamo nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License LGPL as * published by the Free Software Foundation, either version 2.1 of the * License, or (at your option) any later version or the BSD license. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License LGPL and the BSD license for more details. * * You should have received a copy of the GNU Lesser General Public * License LGPL and BSD license along with this program. * *******************************************************************************/ package it.unibg.robotics.jorocos.exceptions; import it.unibg.robotics.jorocos.core.AbstractOrocosConnection; import it.unibg.robotics.jorocos.core.OrocosDataPort.PortType; /** * Thrown when someone tries to use an {@link AbstractOrocosConnection} in a way that is not allowed * for the port type of the port associated to that connection (e.g. call the method * {@link AbstractOrocosConnection#writeData(Object) on a connection defined for an output port. * * * @author <A HREF="mailto:luca.gherardi@unibg.it">Luca Gherardi</A> * @version 1.0 * @since August 2011 */ public class WrongUseOfConnectionException extends Exception{ /** The Constant serialVersionUID. */ private static final long serialVersionUID = 1L; /** The port type. */ private PortType portType; /** * Instantiates a new wrong use of connection exception. * * @param portType the port type */ public WrongUseOfConnectionException(PortType portType){ this.portType = portType; } /* (non-Javadoc) * @see java.lang.Throwable#toString() */ public String toString(){ if(portType == PortType.INPUT_PORT){ return "This connection is defined on a Input Port. You cannot use it for reading"; }else{ return "This connection is defined on a Output Port. You cannot use it for writing"; } } }