src/jdk.httpserver/share/classes/sun/net/httpserver/FixedLengthInputStream.java
branchhttp-client-branch
changeset 55782 0586f8664ba8
parent 55763 634d8e14c172
parent 47705 a6f8cacdef93
--- a/src/jdk.httpserver/share/classes/sun/net/httpserver/FixedLengthInputStream.java	Wed Nov 08 14:08:52 2017 +0300
+++ b/src/jdk.httpserver/share/classes/sun/net/httpserver/FixedLengthInputStream.java	Wed Nov 08 12:44:07 2017 +0000
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -61,7 +61,7 @@
             }
         }
         if (n < 0 && !eof)
-            throw new IOException("Connection closed before all bytes received");
+            throw new IOException("connection closed before all data received");
         return n;
     }