1 package org.paneris.util; 2 3 import java.io.IOException; 4 5 public class ProcessFailedException extends IOException { 6 /** 7 * 8 */ 9 private static final long serialVersionUID = 1L; 10 public String stderr; 11 public ProcessFailedException(String message, String stderr) { 12 super(message); 13 this.stderr = stderr; 14 } 15 }