Skip to content

Commit 1a9b457

Browse files
committed
Add @since to MalformedPackageURLException constructors
1 parent 681b0aa commit 1a9b457

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/main/java/com/github/packageurl/MalformedPackageURLException.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ public class MalformedPackageURLException extends Exception {
3232

3333
/**
3434
* Constructs a {@code MalformedPackageURLException} with no detail message.
35+
*
36+
* @since 1.0.0
3537
*/
3638
public MalformedPackageURLException() {
3739
}
@@ -40,7 +42,8 @@ public MalformedPackageURLException() {
4042
* Constructs a {@code MalformedPackageURLException} with the
4143
* specified detail message.
4244
*
43-
* @param msg the detail message.
45+
* @param msg the detail message
46+
* @since 1.0.0
4447
*/
4548
public MalformedPackageURLException(String msg) {
4649
super(msg);
@@ -52,6 +55,7 @@ public MalformedPackageURLException(String msg) {
5255
*
5356
* @param message the detail message
5457
* @param cause the cause
58+
* @since 1.6.0
5559
*/
5660
public MalformedPackageURLException(String message, Throwable cause) {
5761
super(message, cause);
@@ -62,6 +66,7 @@ public MalformedPackageURLException(String message, Throwable cause) {
6266
* message of {@code (cause==null ? null : cause.toString())}.
6367
*
6468
* @param cause the cause
69+
* @since 1.6.0
6570
*/
6671
public MalformedPackageURLException(Throwable cause) {
6772
super(cause);

0 commit comments

Comments
 (0)