File: CommandException.java

package info (click to toggle)
natbraille 2.0rc3-10
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,924 kB
  • sloc: java: 31,266; xml: 7,747; sh: 165; haskell: 50; makefile: 34
file content (109 lines) | stat: -rw-r--r-- 2,987 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/**************************************************************************
/* This class wraps exceptions during command execution.
/*
/* Copyright (c) 2009 by Bernhard Bablok (mail@bablokb.de)
/*
/* This program is free software; you can redistribute it and/or modify
/* it under the terms of the GNU Library General Public License as published
/* by  the Free Software Foundation; either version 2 of the License or
/* (at your option) any later version.
/*
/* This program is distributed in the hope that it will be useful, but
/* WITHOUT ANY WARRANTY; without even the implied warranty of
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
/* GNU Library General Public License for more details.
/*
/* You should have received a copy of the GNU Library General Public License
/* along with this program; see the file COPYING.LIB.  If not, write to
/* the Free Software Foundation Inc., 59 Temple Place - Suite 330,
/* Boston, MA  02111-1307 USA
/**************************************************************************/

package org.im4java.core;

import java.util.ArrayList;

/**
   This class wraps exceptions during image-attribute retrivial.

   @version $Revision: 1.2 $
   @author  $Author: bablokb, Bruno Mascret (warnings) $
 */

public class CommandException extends IM4JavaException {

	/** For the Serialization (not used) */
	private static final long serialVersionUID = 1L;
	//////////////////////////////////////////////////////////////////////////////

	/**
	 * The stderr-output of the command.
	 */

	private ArrayList<String> iErrorText = new ArrayList<String>();

	//////////////////////////////////////////////////////////////////////////////

	/**
	 * Constructor.
	 */

	public  CommandException() {
		super();
	}

	//////////////////////////////////////////////////////////////////////////////

	/**
     * Constructor.
	 * @param pMessage the Exception message
	 */

	public  CommandException(String pMessage) {
		super(pMessage);
	}

	//////////////////////////////////////////////////////////////////////////////

	/**
     * Constructor.
	 * @param pCause the Exception cause
	 * @param pMessage the Exception message
	 */
	public  CommandException(String pMessage, Throwable pCause) {
		super(pMessage,pCause);
	}

	//////////////////////////////////////////////////////////////////////////////

	/**
	* Constructor.
	* @param pCause the Exception cause
	*/	
	public  CommandException(Throwable pCause) {
		super(pCause);
	}

	//////////////////////////////////////////////////////////////////////////////

	/**
     * Return the error-text object.
	 * @return the error-text object.
	 */

	public ArrayList<String> getErrorText() {
		return iErrorText;
	}


///////////////////////////////////////////////////////////////////////////////

	/**
	 * Set the error text of this exception.
	 * @param pErrorText the error text of this exception
	 */

	public void setErrorText(ArrayList<String> pErrorText) {
		iErrorText = pErrorText;
	}
}