001 package org.springframework.richclient.exceptionhandling; 002 003 /** 004 * A paramater value to determines if the user should or should not be asked or forced 005 * to shutdown the application when an exception occurs. 006 * @author Geoffrey De Smet 007 * @since 0.3 008 */ 009 public enum ShutdownPolicy { 010 011 NONE, 012 ASK, 013 OBLIGATE 014 015 }