feat(devkit-core): added NotImplementedException

This commit is contained in:
Zihlu Wang
2023-07-29 22:52:26 +08:00
parent d8b9aee039
commit 6566304a39
@@ -0,0 +1,46 @@
/*
* Copyright (C) 2023 CodeCraftersCN.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package cn.org.codecrafters.devkit.core.exceptions;
/**
* NotImplementedException
*
* @author Zihlu Wang
* @since 29 Jul 2023
*/
public class NotImplementedException extends RuntimeException {
public NotImplementedException() {
}
public NotImplementedException(String message) {
super(message);
}
public NotImplementedException(String message, Throwable cause) {
super(message, cause);
}
public NotImplementedException(Throwable cause) {
super(cause);
}
public NotImplementedException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}