blob: e4b589eeacc221434e18870c28a5db2d91cb6916 [file] [log] [blame]
Stuart McCullochb32291a2012-07-16 14:10:57 +00001package aQute.service.reporter;
2
3
4
5public interface Messages {
6 static public interface ERROR extends Reporter.SetLocation {}
7
8 static public interface WARNING extends Reporter.SetLocation {}
9
10 ERROR NoSuchFile_(Object r);
11
12 ERROR Unexpected_Error_(String context, Exception e);
13
14}