File tree 3 files changed +34
-25
lines changed
src/main/java/org/scm4j/commons/regexconfig
3 files changed +34
-25
lines changed Original file line number Diff line number Diff line change 1
- package org .scm4j .commons .regexconfig ;
2
-
3
- public class EConfig extends RuntimeException {
4
- public EConfig (String message , Exception e ) {
5
- super (message , e );
6
- }
7
-
8
- public EConfig (String message ) {
9
- super (message );
10
- }
11
- }
1
+ package org .scm4j .commons .regexconfig ;
2
+
3
+ public class EConfig extends RuntimeException {
4
+
5
+ private static final long serialVersionUID = 1L ;
6
+
7
+ public EConfig (String message , Exception e ) {
8
+ super (message , e );
9
+ }
10
+
11
+ public EConfig (String message ) {
12
+ super (message );
13
+ }
14
+ }
Original file line number Diff line number Diff line change 1
- package org .scm4j .commons .regexconfig ;
2
-
3
- public class EConfigReadFailed extends EConfig {
4
- public EConfigReadFailed (String message , Exception e ) {
5
- super (message , e );
6
- }
7
- }
1
+ package org .scm4j .commons .regexconfig ;
2
+
3
+ public class EConfigReadFailed extends EConfig {
4
+
5
+ private static final long serialVersionUID = 1L ;
6
+
7
+ public EConfigReadFailed (String message , Exception e ) {
8
+ super (message , e );
9
+ }
10
+ }
Original file line number Diff line number Diff line change 1
- package org .scm4j .commons .regexconfig ;
2
-
3
- public class EConfigWrongFormat extends EConfig {
4
- public EConfigWrongFormat (String message ) {
5
- super (message );
6
- }
7
- }
1
+ package org .scm4j .commons .regexconfig ;
2
+
3
+ public class EConfigWrongFormat extends EConfig {
4
+
5
+ private static final long serialVersionUID = 1L ;
6
+
7
+ public EConfigWrongFormat (String message ) {
8
+ super (message );
9
+ }
10
+ }
You can’t perform that action at this time.
0 commit comments