Revision 20100 branches/v10/libraries/libFMap/src/com/iver/cit/gvsig/fmap/tools/BehaviorException.java

View differences:

BehaviorException.java
41 41
package com.iver.cit.gvsig.fmap.tools;
42 42

  
43 43
/**
44
 * Excepci?n lanzada cuando falla alguna herramienta.
44
 * <p>Exception produced when fails the process that interacts with a {@link MapControl MapControl} object,
45
 *  using some tool.</p>
45 46
 *
46 47
 * @author Vicente Caballero Navarro
47 48
 */
48 49
public class BehaviorException extends Exception {
49 50
	/**
50
	 * Crea una nueva BehaviorException.
51
	 *
52
	 * @param message
51
	 * <p>Creates a new behavior exception with the specified detail message.</p>
52
	 * 
53
	 * @see Exception#Exception(String)
53 54
	 */
54 55
	public BehaviorException(String message) {
55 56
		super(message);
56 57
	}
57 58

  
58 59
	/**
59
	 * Crea una nueva BehaviorException.
60
	 *
61
	 * @param message
62
	 * @param cause
60
	 * <p>Creates a new behavior exception with the specified detail message and cause.</p>
61
	 * 
62
	 * @see Exception#Exception(String, Throwable)
63 63
	 */
64 64
	public BehaviorException(String message, Throwable cause) {
65 65
		super(message, cause);

Also available in: Unified diff