All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.inlong.sort.filesystem.shaded.software.amazon.ion.ContainedValueException Maven / Gradle / Ivy

There is a newer version: 1.13.0
Show newest version
/*
 * 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 - 2024 Weber Informatics LLC | Privacy Policy