software.amazon.ion.ContainedValueException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ion-java Show documentation
Show all versions of ion-java Show documentation
A Java implementation of the Amazon Ion data notation.
/*
* 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);
}
}