blob: 804c43031c9218e9b467c577181cf526cbc74410 [file] [log] [blame]
package com.intellij.platform.templates.github;
/**
* @author Sergey Simonchik
*/
public class GeneratorException extends Exception {
public GeneratorException(String message) {
super(message);
}
public GeneratorException(String message, Throwable cause) {
super(message, cause);
}
}