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

org.apache.inlong.sort.filesystem.shaded.software.amazon.ion.NullValueException 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 invoking an inappropriate method on an Ion
 * null value.
 */
public class NullValueException
    extends IonException
{
    private static final long serialVersionUID = 1L;

    public NullValueException()
    {
        super();
    }

    /**
     * @param message
     * @param cause
     */
    public NullValueException(String message, Throwable cause)
    {
        super(message, cause);
    }

    /**
     * @param message
     */
    public NullValueException(String message)
    {
        super(message);
    }

    /**
     * @param cause
     */
    public NullValueException(Throwable cause)
    {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy