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

com.github.zw201913.common.ProjectException Maven / Gradle / Ivy

The newest version!
package com.github.zw201913.common;

import com.github.zw201913.enumeration.ExceptionType;

public class ProjectException extends Exception {

	private static final long serialVersionUID = -6782565020039957140L;

	private final ExceptionType type;

	public ProjectException(ExceptionType type) {
		super(type.getMessage());
		this.type = type;
	}

	public ExceptionType getType() {
		return type;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy