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

com.mayabot.nlp.hppc.BufferAllocationException Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package com.mayabot.nlp.hppc;

import java.util.IllegalFormatException;
import java.util.Locale;

public class BufferAllocationException extends RuntimeException {
    public BufferAllocationException(String message) {
        super(message);
    }

    public BufferAllocationException(String message, Object... args) {
        this(message, null, args);
    }

    public BufferAllocationException(String message, Throwable t, Object... args) {
        super(formatMessage(message, t, args), t);
    }

    private static String formatMessage(String message, Throwable t, Object... args) {
        try {
            return String.format(Locale.ROOT, message, args);
        } catch (IllegalFormatException e) {
            BufferAllocationException substitute =
                    new BufferAllocationException(message + " [ILLEGAL FORMAT, ARGS SUPPRESSED]");
            if (t != null) {
                substitute.addSuppressed(t);
            }
            substitute.addSuppressed(e);
            throw substitute;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy