package org.openstack.atlas.util.debug.exceptions; public class DebugTestGreatGrandChildException extends DebugTestGrandChildException { public DebugTestGreatGrandChildException() { super(); } public DebugTestGreatGrandChildException(String message) { super(message); } public DebugTestGreatGrandChildException(String message, Throwable cause) { super(message, cause); } public DebugTestGreatGrandChildException(Throwable cause) { super(cause); } }