aboutsummaryrefslogtreecommitdiffstats
path: root/Java/com/phidgets/event/ErrorListener.java
blob: a1a0207473a9f0a52cdf26ed36668aa692e9d2ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright 2006 Phidgets Inc.  All rights reserved.
 */

package com.phidgets.event;

/**
 * This interface represents a ErrorEvent. This event originates from all Phidgets.
 * It is used for asynchronous error handling.
 * 
 * @author Phidgets Inc.
 */
public interface ErrorListener
{
	/**
	 * This method is called with the event data when a new event arrives.
	 * 
	 * @param ae the event data object containing event data
	 */
	public void error(ErrorEvent ae);
}