001package com.mrivanplays.process;
002
003/**
004 * Represents an exception, which is used to hold exceptions, thrown by {@link Process Processes}
005 *
006 * @since 0.0.1
007 * @author <a href="mailto:[email protected]">Ivan Pekov</a>
008 */
009public class ProcessException extends RuntimeException {
010
011  public ProcessException(String message) {
012    super(message);
013  }
014
015  public ProcessException(String message, Throwable stack) {
016    super(message, stack);
017  }
018
019}