in common/src/main/java/org/apache/asyncweb/common/HttpResponseStatus.java [273:289]
private static Category categoryForId(int id) {
int catId = id / 100;
switch (catId) {
case 1:
return Category.INFORMATIONAL;
case 2:
return Category.SUCCESSFUL;
case 3:
return Category.REDIRECTION;
case 4:
return Category.CLIENT_ERROR;
case 5:
return Category.SERVER_ERROR;
default:
return null;
}
}