Serializablepublic class AliasDuplicateException extends RuntimeException
| 限定符和类型 | 字段 | 说明 |
|---|---|---|
private static long |
serialVersionUID |
| 构造器 | 说明 |
|---|---|
AliasDuplicateException() |
Constructs an
AliasDuplicateException with null
as its error detail message. |
AliasDuplicateException(String message) |
Constructs an
AliasDuplicateException with the specified detail message. |
AliasDuplicateException(String message,
Throwable cause) |
Constructs an
AliasDuplicateException with the specified detail message
and cause. |
AliasDuplicateException(Throwable cause) |
Constructs an
AliasDuplicateException with the specified cause and a
detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of cause). |
private static final long serialVersionUID
public AliasDuplicateException()
AliasDuplicateException with null
as its error detail message.public AliasDuplicateException(String message)
AliasDuplicateException with the specified detail message.message - The detail message (which is saved for later retrieval
by the Throwable.getMessage() method)public AliasDuplicateException(String message, Throwable cause)
AliasDuplicateException with the specified detail message
and cause.message - The detail message (which is saved for later retrieval
by the Throwable.getMessage() method)cause - The cause (which is saved for later retrieval by the
Throwable.getCause() method). (A null value is permitted,
and indicates that the cause is nonexistent or unknown.)public AliasDuplicateException(Throwable cause)
AliasDuplicateException with the specified cause and a
detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of cause).cause - The cause (which is saved for later retrieval by the
Throwable.getCause() method). (A null value is permitted,
and indicates that the cause is nonexistent or unknown.)Copyright © 2023 io-fairy. All rights reserved.