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

com.github.andyshao.data.structure.DataStructureException Maven / Gradle / Ivy

The newest version!
package com.github.andyshao.data.structure;

import java.io.Serial;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy