com.ibm.cloud.objectstorage.thirdparty.ion.InvalidSystemSymbolException 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-2013 Amazon.com, Inc. All rights reserved.
*/
package software.amazon.ion;
/**
* An error caused by use of an invalid symbol starting with
* "$ion_"
.
*/
public class InvalidSystemSymbolException
extends IonException
{
private static final long serialVersionUID = 2206499395645594047L;
private String myBadSymbol;
public InvalidSystemSymbolException(String badSymbol)
{
super("Invalid system symbol '" + badSymbol + "'");
myBadSymbol = badSymbol;
}
public String getBadSymbol()
{
return myBadSymbol;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy