1 23 24 package org.apache.slide.common; 25 26 31 public class SlideRuntimeException extends RuntimeException { 32 33 34 36 37 42 public SlideRuntimeException(String message) { 43 this(message, true); 44 } 45 46 47 53 public SlideRuntimeException(String message, boolean showTrace) { 54 super(message); 55 if (showTrace) { 56 Domain.warn(message); 57 } 58 } 59 60 } 61 | Popular Tags |