1 16 package org.jahia.pipelines; 17 18 24 25 public class PipelineException extends Exception { 26 27 Throwable nested = null; 28 29 public PipelineException () { 30 super(); 31 } 32 33 public PipelineException (String message) { 34 super(message); 35 } 36 37 public PipelineException (Throwable nested) { 38 super(); 39 this.nested = nested; 40 } 41 42 public PipelineException (String msg, Throwable nested) { 43 super(msg); 44 this.nested = nested; 45 } 46 public Throwable getNested() { 47 return nested; 48 } 49 50 } 51 | Popular Tags |