定义 UnsupportedDataTypeException 类代替 javax.activation.Unsupported… by cnscoo · Pull Request #489 · Tencent/APIJSON
5 changes: 0 additions & 5 deletions APIJSONORM/pom.xml
This file contains hidden or 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
2 changes: 1 addition & 1 deletion APIJSONORM/src/main/java/apijson/orm/AbstractFunctionParser.java
This file contains hidden or 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
2 changes: 1 addition & 1 deletion APIJSONORM/src/main/java/apijson/orm/AbstractObjectParser.java
This file contains hidden or 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
2 changes: 1 addition & 1 deletion APIJSONORM/src/main/java/apijson/orm/AbstractParser.java
This file contains hidden or 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
3 changes: 1 addition & 2 deletions APIJSONORM/src/main/java/apijson/orm/AbstractSQLConfig.java
This file contains hidden or 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
3 changes: 1 addition & 2 deletions APIJSONORM/src/main/java/apijson/orm/AbstractVerifier.java
This file contains hidden or 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
2 changes: 0 additions & 2 deletions APIJSONORM/src/main/java/apijson/orm/exception/CommonException.java
This file contains hidden or 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 hidden or 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 @@ | ||
| /*Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved. | ||
|
|
||
| This source code is licensed under the Apache License Version 2.0.*/ | ||
|
|
||
|
|
||
| package apijson.orm.exception; | ||
|
|
||
| import java.io.IOException; | ||
|
|
||
| /** | ||
| * 给定的数据类型不被支持 | ||
| * | ||
| * @author cnscoo | ||
| */ | ||
|
|
||
| public class UnsupportedDataTypeException extends IOException { | ||
| private static final long serialVersionUID = 1L; | ||
|
|
||
| public UnsupportedDataTypeException() { | ||
| super(); | ||
| } | ||
|
|
||
| public UnsupportedDataTypeException(String s) { | ||
| super(s); | ||
| } | ||
| } |