001package org.kuali.common.util.execute.impl; 002 003import org.kuali.common.util.execute.Executable; 004 005public final class ExceptionExecutable implements Executable { 006 007 @Override 008 public void execute() { 009 throw new IllegalStateException("Thrown from ExceptionExecutable"); 010 } 011 012}