2026-03-17 13:31:18 -07:00

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;
}