Extend JMeter known exceptions

This commit is contained in:
Alexander Sukhov 2015-07-24 19:55:56 +03:00
parent 53660d859c
commit a12bfa92ad

View File

@ -190,6 +190,8 @@ class JMeterReader(AbstractReader):
"java.io.EOFException" : 104, "java.io.EOFException" : 104,
"org.apache.http.conn.ConnectTimeoutException": 110, "org.apache.http.conn.ConnectTimeoutException": 110,
"org.apache.commons.net.MalformedServerReplyException" : 71, "org.apache.commons.net.MalformedServerReplyException" : 71,
"org.apache.http.NoHttpResponseException": 32,
"java.io.InterruptedIOException": 32,
} }
def __init__(self, owner, jmeter): def __init__(self, owner, jmeter):