com.refinitiv.eta.codec.InvalidDataException Maven / Gradle / Ivy
/*|-----------------------------------------------------------------------------
*| This source code is provided under the Apache 2.0 license --
*| and is provided AS IS with no warranty or guarantee of fit for purpose. --
*| See the project's LICENSE.md for details. --
*| Copyright (C) 2019-2022 Refinitiv. All rights reserved. --
*|-----------------------------------------------------------------------------
*/
package com.refinitiv.eta.codec;
class InvalidDataException extends RuntimeException
{
private static final long serialVersionUID = 1L;
InvalidDataException(String msg)
{
super(msg);
}
}