001 package org.cumulus4j.store.datastoreversion; 002 003 public class CommandApplyException extends RuntimeException 004 { 005 private static final long serialVersionUID = 1L; 006 007 public CommandApplyException() { } 008 009 public CommandApplyException(String message) { 010 super(message); 011 } 012 013 public CommandApplyException(Throwable cause) { 014 super(cause); 015 } 016 017 public CommandApplyException(String message, Throwable cause) { 018 super(message, cause); 019 } 020 021 }