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

com.kobylynskyi.graphql.codegen.model.exception.UnableToCreateDirectoryException Maven / Gradle / Ivy

The newest version!
package com.kobylynskyi.graphql.codegen.model.exception;

/**
 * Exception that indicates error while creating directory
 *
 * @author kobylynskyi
 */
public class UnableToCreateDirectoryException extends RuntimeException {

    public UnableToCreateDirectoryException(String directoryPath, Exception e) {
        super("Unable to create directory by path: " + directoryPath, e);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy