2121import javax .annotation .Nullable ;
2222
2323/**
24- * This exception is Eid version of Java's {@link IllegalArgumentException}.
24+ * This exception is Eid version of Java's {@link IllegalArgumentException} that
25+ * holds an {@link Eid} object. It can be used to process it in application
26+ * central error handler.
2527 * <p>
2628 * <strong>Caution!</strong> This class shouldn't be used in any public API or
2729 * library. It is designed to be used for in-house development of end user
@@ -94,7 +96,9 @@ public EidIllegalArgumentException(EidMessage message) {
9496 * {@link #getCause()} method). (A <tt>null</tt> value is
9597 * permitted, and indicates that the cause is nonexistent or
9698 */
97- public EidIllegalArgumentException (CharSequence eid , String message , @ Nullable Throwable cause ) {
99+ public EidIllegalArgumentException (
100+ CharSequence eid , String message , @ Nullable Throwable cause
101+ ) {
98102 super (eid , message , cause );
99103 }
100104
@@ -113,7 +117,9 @@ public EidIllegalArgumentException(CharSequence eid, String message, @Nullable T
113117 * {@link #getCause()} method). (A <tt>null</tt> value is
114118 * permitted, and indicates that the cause is nonexistent or
115119 */
116- public EidIllegalArgumentException (EidMessage message , @ Nullable Throwable cause ) {
120+ public EidIllegalArgumentException (
121+ EidMessage message , @ Nullable Throwable cause
122+ ) {
117123 super (message , cause );
118124 }
119125
@@ -133,7 +139,9 @@ public EidIllegalArgumentException(EidMessage message, @Nullable Throwable cause
133139 * {@link #getCause()} method). (A <tt>null</tt> value is
134140 * permitted, and indicates that the cause is nonexistent or
135141 */
136- public EidIllegalArgumentException (CharSequence eid , @ Nullable Throwable cause ) {
142+ public EidIllegalArgumentException (
143+ CharSequence eid , @ Nullable Throwable cause
144+ ) {
137145 super (eid , cause );
138146 }
139147
@@ -181,7 +189,9 @@ public EidIllegalArgumentException(Eid id, String message) {
181189 * {@link #getCause()} method). (A <tt>null</tt> value is
182190 * permitted, and indicates that the cause is nonexistent or
183191 */
184- public EidIllegalArgumentException (Eid id , String message , @ Nullable Throwable cause ) {
192+ public EidIllegalArgumentException (
193+ Eid id , String message , @ Nullable Throwable cause
194+ ) {
185195 super (id , message , cause );
186196 }
187197
0 commit comments