Skip to content

Commit

Permalink
change to single class
Browse files Browse the repository at this point in the history
  • Loading branch information
powercasgamer committed Nov 12, 2023
1 parent 620f6a2 commit 03e4210
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package dev.mizule.imagery.app.exceptions
import io.javalin.http.HttpResponseException
import io.javalin.http.HttpStatus

open class FileNotFoundResponse @JvmOverloads constructor(
class FileNotFoundResponse @JvmOverloads constructor(
message: String = "This file does not exist",
details: Map<String, String> = mapOf()
) : HttpResponseException(HttpStatus.NOT_FOUND, message, details)
details: Map<String, String> = mapOf(),
) : HttpResponseException(HttpStatus.NOT_FOUND, message, details)

0 comments on commit 03e4210

Please sign in to comment.