-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #96 Support explicit inclusion/exlusion of properties
- Loading branch information
Showing
49 changed files
with
1,956 additions
and
257 deletions.
There are no files selected for viewing
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
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
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
27 changes: 27 additions & 0 deletions
27
src/main/java/net/karneim/pojobuilder/PojoBuilderException.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,27 @@ | ||
package net.karneim.pojobuilder; | ||
|
||
public class PojoBuilderException extends RuntimeException { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
public PojoBuilderException() { | ||
super(); | ||
} | ||
|
||
public PojoBuilderException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { | ||
super(message, cause, enableSuppression, writableStackTrace); | ||
} | ||
|
||
public PojoBuilderException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public PojoBuilderException(String message) { | ||
super(message); | ||
} | ||
|
||
public PojoBuilderException(Throwable cause) { | ||
super(cause); | ||
} | ||
|
||
} |
4 changes: 3 additions & 1 deletion
4
src/main/java/net/karneim/pojobuilder/analysis/AnalysisException.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
Oops, something went wrong.