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

top.focess.util.yaml.YamlLoadException Maven / Gradle / Ivy

There is a newer version: 1.1.24
Show newest version
package top.focess.util.yaml;

import java.io.IOException;

/**
 * Thrown to indicate there is any exception thrown in the yaml loading process
 */
public class YamlLoadException extends IOException {

    /**
     * Constructs a YamlLoadException
     *
     * @param e the exception
     */
    public YamlLoadException(final Exception e) {
        super(e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy