NotImplementedException.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.lang3;

  18. /**
  19.  * Thrown to indicate that a block of code has not been implemented.
  20.  * This exception supplements {@link UnsupportedOperationException}
  21.  * by providing a more semantically rich description of the problem.
  22.  *
  23.  * <p>{@link NotImplementedException} represents the case where the
  24.  * author has yet to implement the logic at this point in the program.
  25.  * This can act as an exception based TODO tag.</p>
  26.  *
  27.  * <pre>
  28.  * public void foo() {
  29.  *   try {
  30.  *     // do something that throws an Exception
  31.  *   } catch (Exception ex) {
  32.  *     // don't know what to do here yet
  33.  *     throw new NotImplementedException("TODO", ex);
  34.  *   }
  35.  * }
  36.  * </pre>
  37.  *
  38.  * This class was originally added in Lang 2.0, but removed in 3.0.
  39.  *
  40.  * @since 3.2
  41.  */
  42. public class NotImplementedException extends UnsupportedOperationException {

  43.     private static final long serialVersionUID = 20131021L;

  44.     /** A resource for more information regarding the lack of implementation. */
  45.     private final String code;

  46.     /**
  47.      * Constructs a NotImplementedException.
  48.      *
  49.      * @since 3.10
  50.      */
  51.     public NotImplementedException() {
  52.         this.code = null;
  53.     }

  54.     /**
  55.      * Constructs a NotImplementedException.
  56.      *
  57.      * @param message description of the exception
  58.      * @since 3.2
  59.      */
  60.     public NotImplementedException(final String message) {
  61.         this(message, (String) null);
  62.     }

  63.     /**
  64.      * Constructs a NotImplementedException.
  65.      *
  66.      * @param message description of the exception
  67.      * @param code code indicating a resource for more information regarding the lack of implementation
  68.      * @since 3.2
  69.      */
  70.     public NotImplementedException(final String message, final String code) {
  71.         super(message);
  72.         this.code = code;
  73.     }

  74.     /**
  75.      * Constructs a NotImplementedException.
  76.      *
  77.      * @param message description of the exception
  78.      * @param cause cause of the exception
  79.      * @since 3.2
  80.      */
  81.     public NotImplementedException(final String message, final Throwable cause) {
  82.         this(message, cause, null);
  83.     }

  84.     /**
  85.      * Constructs a NotImplementedException.
  86.      *
  87.      * @param message description of the exception
  88.      * @param cause cause of the exception
  89.      * @param code code indicating a resource for more information regarding the lack of implementation
  90.      * @since 3.2
  91.      */
  92.     public NotImplementedException(final String message, final Throwable cause, final String code) {
  93.         super(message, cause);
  94.         this.code = code;
  95.     }

  96.     /**
  97.      * Constructs a NotImplementedException.
  98.      *
  99.      * @param cause cause of the exception
  100.      * @since 3.2
  101.      */
  102.     public NotImplementedException(final Throwable cause) {
  103.         this(cause, null);
  104.     }

  105.     /**
  106.      * Constructs a NotImplementedException.
  107.      *
  108.      * @param cause cause of the exception
  109.      * @param code code indicating a resource for more information regarding the lack of implementation
  110.      * @since 3.2
  111.      */
  112.     public NotImplementedException(final Throwable cause, final String code) {
  113.         super(cause);
  114.         this.code = code;
  115.     }

  116.     /**
  117.      * Obtain the not implemented code. This is an unformatted piece of text intended to point to
  118.      * further information regarding the lack of implementation. It might, for example, be an issue
  119.      * tracker ID or a URL.
  120.      *
  121.      * @return a code indicating a resource for more information regarding the lack of implementation
  122.      */
  123.     public String getCode() {
  124.         return this.code;
  125.     }
  126. }