com.kobylynskyi.graphql.codegen.model.exception.UnableToDeleteDirectoryException 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 deleting directory
*
* @author kobylynskyi
*/
public class UnableToDeleteDirectoryException extends RuntimeException {
public UnableToDeleteDirectoryException(Exception e) {
super("Unable to delete directory", e);
}
}