Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
Student-Marks-Microservice
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vishal Vaddadhi
Student-Marks-Microservice
Commits
e128e476
Commit
e128e476
authored
Apr 03, 2021
by
Kyle Muldoon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated error message for students not found
parent
7e93f55d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
StudentMarksController.java
...vices/MarksService/controller/StudentMarksController.java
+2
-2
No files found.
src/main/java/com/StudentServices/MarksService/controller/StudentMarksController.java
View file @
e128e476
...
@@ -34,7 +34,7 @@ public class StudentMarksController {
...
@@ -34,7 +34,7 @@ public class StudentMarksController {
ResponseEntity
<
StudentMarks
>
findStudentMarksById
(
@PathVariable
String
id
)
throws
ResourceNotFoundException
{
ResponseEntity
<
StudentMarks
>
findStudentMarksById
(
@PathVariable
String
id
)
throws
ResourceNotFoundException
{
StudentMarks
sm
=
studentService
.
getStudentById
(
id
).
StudentMarks
sm
=
studentService
.
getStudentById
(
id
).
orElseThrow
(
()
->
new
ResourceNotFoundException
(
"Student
Marks not found...
"
+
id
));
orElseThrow
(
()
->
new
ResourceNotFoundException
(
"Student
was not found:
"
+
id
));
return
ResponseEntity
.
ok
(
sm
);
return
ResponseEntity
.
ok
(
sm
);
}
}
...
@@ -45,7 +45,7 @@ public class StudentMarksController {
...
@@ -45,7 +45,7 @@ public class StudentMarksController {
@DeleteMapping
(
"remove/{id}"
)
@DeleteMapping
(
"remove/{id}"
)
ResponseEntity
<
String
>
deleteStudentMarkById
(
@PathVariable
String
id
)
throws
ResourceNotFoundException
{
ResponseEntity
<
String
>
deleteStudentMarkById
(
@PathVariable
String
id
)
throws
ResourceNotFoundException
{
StudentMarks
sm
=
studentService
.
getStudentById
(
id
).
StudentMarks
sm
=
studentService
.
getStudentById
(
id
).
orElseThrow
(
()
->
new
ResourceNotFoundException
(
"Student
Marks not found...
"
+
id
));
orElseThrow
(
()
->
new
ResourceNotFoundException
(
"Student
was not found:
"
+
id
));
studentService
.
deleteStudent
(
sm
);
studentService
.
deleteStudent
(
sm
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment