Skip to content

Instantly share code, notes, and snippets.

@vikasontech
Last active May 2, 2020 09:08
Show Gist options
  • Save vikasontech/27ab9678ffac6dd33b17eed8b6e1b439 to your computer and use it in GitHub Desktop.
Save vikasontech/27ab9678ffac6dd33b17eed8b6e1b439 to your computer and use it in GitHub Desktop.
SomeService.kt
@Service
class SomeService {
fun process(id: Int): Mono<String> {
return if (id < 1) Mono.error{ IllegalArgumentException("oh!! invalid id") }
else Mono.just("Id Found!")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment