Skip to content

Commit e8efac2

Browse files
committed
bump version 0.34
1 parent dab497b commit e8efac2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.32
1+

spar-wings-httpexceptions/src/main/java/jp/xet/sparwings/spring/web/httpexceptions/HttpUnauthorizedException.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* Respond 401.
2525
*
26-
* @since #version#
26+
* @since 0.34
2727
* @author daisuke
2828
*/
2929
@NoArgsConstructor
@@ -36,7 +36,7 @@ public class HttpUnauthorizedException extends HttpResponseException {
3636
*
3737
* @param message 例外メッセージ
3838
* @param cause 起因例外
39-
* @since #version#
39+
* @since 0.34
4040
*/
4141
public HttpUnauthorizedException(String message, Throwable cause) {
4242
super(message, cause);
@@ -46,7 +46,7 @@ public HttpUnauthorizedException(String message, Throwable cause) {
4646
* インスタンスを生成する。
4747
*
4848
* @param message 例外メッセージ
49-
* @since #version#
49+
* @since 0.34
5050
*/
5151
public HttpUnauthorizedException(String message) {
5252
super(message);
@@ -56,7 +56,7 @@ public HttpUnauthorizedException(String message) {
5656
* インスタンスを生成する。
5757
*
5858
* @param cause 起因例外
59-
* @since #version#
59+
* @since 0.34
6060
*/
6161
public HttpUnauthorizedException(Throwable cause) {
6262
super(cause);

0 commit comments

Comments
 (0)