com.ibm.cloud.objectstorage.thirdparty.ion.ContainedValueException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ibm-cos-java-sdk-bundle Show documentation
Show all versions of ibm-cos-java-sdk-bundle Show documentation
A single bundled dependency that includes all service and dependent JARs with third-party libraries relocated to different namespaces.
/*
* Copyright (c) 2007 Amazon.com, Inc. All rights reserved.
*/
package software.amazon.ion;
/**
* An error caused by adding an {@link IonValue} into a container when it's
* already contained elsewhere.
*/
public class ContainedValueException
extends IonException
{
private static final long serialVersionUID = 1L;
public ContainedValueException()
{
super();
}
/**
* @param message
*/
public ContainedValueException(String message)
{
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy