10 lines
276 B
Java
10 lines
276 B
Java
package com.tridium.easdemo.xml;
|
|
|
|
public interface TErrorHandler {
|
|
void error(String str, TLocation tLocation) throws Exception;
|
|
|
|
void fatalError(String str, TLocation tLocation) throws Exception;
|
|
|
|
void warning(String str, TLocation tLocation) throws Exception;
|
|
}
|