/*****************************************************************
SPINE - Signal Processing In-Node Environment is a framework that
allows dynamic on node configuration for feature extraction and a
OtA protocol for the management for WSN
Copyright (C) 2007 Telecom Italia S.p.A.
�
GNU Lesser General Public License
�
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation,
version 2.1 of the License.
�
This library 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 for more details.
�
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA� 02111-1307, USA.
*****************************************************************/
/**
*
* This exception is thrown if the coordinator receives a SPINE message with an incorrect header size.
*
* Note that this class is only used internally at the framework.
*
* @author Raffaele Gravina
*
* @version 1.2
*/
package t2.spine.communication.android;
public class IllegalSpineHeaderSizeException extends Exception {
private static final long serialVersionUID = 0;
public IllegalSpineHeaderSizeException(int expectedLen, int receivedLen) {
super("expected SPINE Header size is: " + expectedLen + " bytes; but received: " + receivedLen + " bytes!");
}
}