Package com.daikit.commons.shared.exception

Source Code of com.daikit.commons.shared.exception.DkUnsupportedCaseException

/**
* Copyright (C) 2013 DaiKit.com - daikit-commons module (admin@daikit.com)
*
*         Project home : http://code.daikit.com/commons
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*         http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.daikit.commons.shared.exception;

import com.daikit.commons.shared.exception.context.DkExceptionContext;


/**
* When an unsupported case has been reached within a method
*
* @author tcaselli
* @version $Revision$ Last modifier: $Author$ Last commit: $Date$
*/
public class DkUnsupportedCaseException extends DkException
{

  /** The Constant serialVersionUID. */
  private static final long serialVersionUID = -353833374352702356L;

  /**
   * Instantiates a new UnsupportedCaseException.
   */
  public DkUnsupportedCaseException()
  {
    super();
  }

  /**
   * Instantiates a new UnsupportedCaseException.
   *
   * @param message
   *           the message
   */
  public DkUnsupportedCaseException(final String message)
  {
    super(new DkExceptionContext(message));
  }

  /**
   * Instantiates a new UnsupportedCaseException.
   *
   * @param context
   *           the context
   */
  public DkUnsupportedCaseException(final DkExceptionContext context)
  {
    super(context);
  }

  /**
   * Instantiates a new UnsupportedCaseException.
   *
   * @param message
   *           the message
   * @param cause
   *           the cause
   */
  public DkUnsupportedCaseException(final String message, final Throwable cause)
  {
    super(new DkExceptionContext(message), cause);
  }
}
TOP

Related Classes of com.daikit.commons.shared.exception.DkUnsupportedCaseException

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.