package com.urbancode.terraform.commands.common; public class CommandException extends RuntimeException { //********************************************************************************************** // CLASS //********************************************************************************************** final static private long serialVersionUID = 1L; //********************************************************************************************** // INSTANCE //********************************************************************************************** //---------------------------------------------------------------------------------------------- public CommandException() { } //---------------------------------------------------------------------------------------------- public CommandException(String message, Throwable cause) { super(message, cause); } //---------------------------------------------------------------------------------------------- public CommandException(String message) { super(message); } //---------------------------------------------------------------------------------------------- public CommandException(Throwable cause) { super(cause); } }