-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7b5306c
commit ea2dcd5
Showing
2 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
jdbc/src/main/java/org/springframework/dao/SizeException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package org.springframework.dao; | ||
|
||
public class SizeException extends RuntimeException { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
public SizeException() { | ||
super(); | ||
} | ||
|
||
public SizeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { | ||
super(message, cause, enableSuppression, writableStackTrace); | ||
} | ||
|
||
public SizeException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public SizeException(String message) { | ||
super(message); | ||
} | ||
|
||
public SizeException(Throwable cause) { | ||
super(cause); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters