We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4522603 commit 0ef17a2Copy full SHA for 0ef17a2
spring-core/src/main/java/org/springframework/core/NestedIOException.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2002-2012 the original author or authors.
+ * Copyright 2002-2014 the original author or authors.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -60,8 +60,7 @@ public NestedIOException(String msg) {
60
* @param cause the nested exception
61
*/
62
public NestedIOException(String msg, Throwable cause) {
63
- super(msg);
64
- initCause(cause);
+ super(msg, cause);
65
}
66
67
0 commit comments