Issue #1729 Correct exception message

This commit is contained in:
Greg Wilkins 2017-08-14 09:52:33 +10:00
parent 5197ce4f54
commit db249c09d0
1 changed files with 1 additions and 1 deletions

View File

@ -481,7 +481,7 @@ public class HttpGenerator
}
catch(BufferOverflowException e)
{
throw new BadMessageException(INTERNAL_SERVER_ERROR_500,"Request header too large",e);
throw new BadMessageException(INTERNAL_SERVER_ERROR_500,"Response header too large",e);
}
catch(Exception e)
{