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

com.peterphi.std.NotImplementedException Maven / Gradle / Ivy

There is a newer version: 10.1.5
Show newest version
package com.peterphi.std;

/**
 * 

* Description: An Error thrown when some functionality is not yet implemented. Mirrors the .NET exception of the same name *

*

*

* Copyright: Copyright (c) 2006 *

*

*

*

*

* * @version $Revision$ */ public class NotImplementedException extends RuntimeException { /** * */ private static final long serialVersionUID = 1L; public NotImplementedException() { super(); } public NotImplementedException(String message) { super(message); } public NotImplementedException(String message, Throwable cause) { super(message, cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy