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

com.github.leeonky.util.CannotSetElementByIndexException Maven / Gradle / Ivy

The newest version!
package com.github.leeonky.util;

import static java.lang.String.format;

public class CannotSetElementByIndexException extends IllegalArgumentException {
    public CannotSetElementByIndexException(Class type) {
        super(format("Cannot set element by index for %s", type.getName()));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy