Commit e59396bb authored by Krishnakanth Balla's avatar Krishnakanth Balla

No changes

parent 34a54890
package com.nisum.bookstore.dto;
import lombok.*;
@Data
@Getter
@Setter
@Builder
public class UserDto {
public String id;
public String name;
public int age;
public int gender;
}
......@@ -9,4 +9,5 @@ public class BookNotFoundException {
public static <T> Mono<T> monoResponseBookNotFoundException( String id ) {
return Mono.error(new ResponseStatusException(HttpStatus.NOT_FOUND, "Book ["+ id + "] not found"));
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment