Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public MalformedPackageURLException(@Nullable String msg) {
*
* @param message the detail message
* @param cause the cause
* @since 1.6.0
* @since 2.0.0
*/
public MalformedPackageURLException(String message, Throwable cause) {
super(message, cause);
Expand All @@ -64,7 +64,7 @@ public MalformedPackageURLException(String message, Throwable cause) {
* message of {@code (cause==null ? null : cause.toString())}.
*
* @param cause the cause
* @since 1.6.0
* @since 2.0.0
*/
public MalformedPackageURLException(Throwable cause) {
super(cause);
Expand Down
Loading