mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-10 00:51:00 +08:00
11 lines
247 B
Java
11 lines
247 B
Java
package com.openisle.exception;
|
|
|
|
/**
|
|
* Exception representing a missing resource such as a post or user.
|
|
*/
|
|
public class NotFoundException extends RuntimeException {
|
|
public NotFoundException(String message) {
|
|
super(message);
|
|
}
|
|
}
|