Package com.daikit.commons.shared.exception

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

/**
* 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;


/**
* Unknown Error. Wrapper for non serializable exceptions.
*
* @author tcaselli
* @version $Revision$ Last modifier: $Author$ Last commit: $Date$
*/
public class DkUnknownErrorException extends DkException
{

  /**
   *
   */
  private static final long serialVersionUID = -8560922255251218828L;

  /**
   * Instantiates a new UnknownErrorException.
   */
  public DkUnknownErrorException()
  {
    super();
  }

  /**
   * Instantiates a new UnknownErrorException.
   *
   * @param message
   *           the message
   */
  public DkUnknownErrorException(final String message)
  {
    super(message);
  }

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

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

  /**
   * Instantiates a new UnknownErrorException.
   *
   * @param context
   *           the context
   * @param cause
   *           the cause
   */
  public DkUnknownErrorException(final DkExceptionContext context, final Throwable cause)
  {
    super(context, cause);
  }
}
TOP

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

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.