001package co.codewizards.cloudstore.core.concurrent; 002 003import co.codewizards.cloudstore.core.exception.ApplicationException; 004 005@ApplicationException 006public class DeferredCompletionException extends RuntimeException { 007 private static final long serialVersionUID = 1L; 008 009 public DeferredCompletionException() { } 010 011 public DeferredCompletionException(String message) { 012 super(message); 013 } 014 015 public DeferredCompletionException(Throwable cause) { 016 super(cause); 017 } 018 019 public DeferredCompletionException(String message, Throwable cause) { 020 super(message, cause); 021 } 022 023 public DeferredCompletionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { 024 super(message, cause, enableSuppression, writableStackTrace); 025 } 026 027}