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

com.simiacryptus.lang.NotImplementedException Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package com.simiacryptus.lang;

@SuppressWarnings("serial")
public class NotImplementedException extends RuntimeException
{

  // Show a warning whenever this is referenced - We shoud implement it!
  @Deprecated
  public NotImplementedException()
  {
    super();
  }

  // Show a warning whenever this is referenced - We shoud implement it!
  @Deprecated
  public NotImplementedException(final String arg0)
  {
    super(arg0);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy