com.kobylynskyi.graphql.codegen.model.exception.UnableToCreateDirectoryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-codegen Show documentation
Show all versions of graphql-java-codegen Show documentation
Java Code Generator based on GraphQL schema
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);
}
}