|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| RDocOutputException.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 | package com.agical.rdoc.core.exception; | |
| 2 | ||
| 3 | ||
| 4 | /** | |
| 5 | * @author brolund | |
| 6 | * | |
| 7 | * (c) 2005 Agical AB | |
| 8 | */ | |
| 9 | public class RDocOutputException extends RDocSystemException { | |
| 10 | private static final long serialVersionUID = 1L; | |
| 11 | ||
| 12 | 0 | public RDocOutputException(String message, Object outputTarget, Exception e) { |
| 13 | 0 | super( message + |
| 14 | "\noutputTarget class is: " + outputTarget.getClass().getName() + | |
| 15 | "\noutputTarget toString: " + outputTarget + | |
| 16 | "\nException message is : " + e.getMessage(), e ); | |
| 17 | } | |
| 18 | ||
| 19 | } |
|
||||||||||