![JAR search and dependency download from the Maven repository](/logo.png)
pl.wavesoftware.eid.exceptions.EidIndexOutOfBoundsException Maven / Gradle / Ivy
/*
* Copyright 2015 Krzysztof Suszyński .
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package pl.wavesoftware.eid.exceptions;
/**
* This class shouldn't be used in any public API or library. It is designed to be used for in-house development
* of end user applications which will report Bugs in standardized error pages or post them to issue tracker.
*
* This id Eid version of {@link IndexOutOfBoundsException}
*
* @see IndexOutOfBoundsException
* @see EidRuntimeException
* @author Krzysztof Suszyński
*/
@SuppressWarnings("unused")
public class EidIndexOutOfBoundsException extends EidRuntimeException {
private static final long serialVersionUID = -9876432123423451L;
/**
* @see EidRuntimeException#EidRuntimeException(String, String, Throwable)
* @param eid see description on {@link EidRuntimeException#EidRuntimeException(String, String, Throwable)}
* @param ref see description on {@link EidRuntimeException#EidRuntimeException(String, String, Throwable)}
* @param cause see description on {@link EidRuntimeException#EidRuntimeException(String, String, Throwable)}
*/
public EidIndexOutOfBoundsException(String eid, String ref, Throwable cause) {
super(eid, ref, cause);
}
/**
* @see EidRuntimeException#EidRuntimeException(String, Throwable)
* @param eid see description on {@link EidRuntimeException#EidRuntimeException(String, Throwable)}
* @param cause see description on {@link EidRuntimeException#EidRuntimeException(String, Throwable)}
*/
public EidIndexOutOfBoundsException(String eid, Throwable cause) {
super(eid, cause);
}
/**
* @see EidRuntimeException#EidRuntimeException(String, String)
* @param eid see description on {@link EidRuntimeException#EidRuntimeException(String, String)}
* @param ref see description on {@link EidRuntimeException#EidRuntimeException(String, String)}
*/
public EidIndexOutOfBoundsException(String eid, String ref) {
super(eid, ref);
}
/**
* @see EidRuntimeException#EidRuntimeException(Eid, Throwable)
* @param id see description on {@link EidRuntimeException#EidRuntimeException(Eid, Throwable)}
* @param cause see description on {@link EidRuntimeException#EidRuntimeException(Eid, Throwable)}
*/
public EidIndexOutOfBoundsException(Eid id, Throwable cause) {
super(id, cause);
}
/**
* @see EidRuntimeException#EidRuntimeException(Eid)
* @param id see description on {@link EidRuntimeException#EidRuntimeException(Eid)}
*/
public EidIndexOutOfBoundsException(Eid id) {
super(id);
}
/**
* @inheritdoc
* @return {@link IndexOutOfBoundsException} class
*/
@Override
public Class extends RuntimeException> getStandardJdkClass() {
return IndexOutOfBoundsException.class;
}
}