All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.andyshao.arithmetic.GraphAlgException Maven / Gradle / Ivy

The newest version!
package com.github.andyshao.arithmetic;

import java.io.Serial;

/**
 * 
 * Title:
* Descript:
* Copyright: Copryright(c) Mar 16, 2015
* Encoding:UNIX UTF-8 * * @author Andy.Shao * */ public class GraphAlgException extends ArithmeticException { @Serial private static final long serialVersionUID = 6039554849054230704L; /** * No arg construction */ public GraphAlgException() { super(); } /** * With error message * @param message error message */ public GraphAlgException(String message) { super(message); } /** * With error message and previous exception * @param message error message * @param exception previous exception */ public GraphAlgException(String message , Throwable exception) { super(message , exception); } /** * With previous exception * @param exception previous exception */ public GraphAlgException(Throwable exception) { super(exception); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy