1 11 package org.eclipse.jdt.internal.formatter; 12 13 19 public class AbortFormatting extends RuntimeException { 20 21 Throwable nestedException; 22 private static final long serialVersionUID = -5796507276311428526L; 24 public AbortFormatting(String message) { 25 super(message); 26 } 27 public AbortFormatting(Throwable nestedException) { 28 super(nestedException.getMessage()); 29 this.nestedException = nestedException; 30 } 31 } 32 | Popular Tags |