/* * Copyright (c) 2012 EMC Corporation * All Rights Reserved */ package com.emc.storageos.coordinator.exceptions; import com.emc.storageos.svcs.errorhandling.model.ExceptionMessagesProxy; import com.emc.storageos.svcs.errorhandling.resources.InternalException; import com.emc.storageos.svcs.errorhandling.resources.ServiceCode; public abstract class CoordinatorException extends InternalException { private static final long serialVersionUID = 467608245330028808L; public static FatalCoordinatorExceptions fatals = ExceptionMessagesProxy .create(FatalCoordinatorExceptions.class); public static RetryableCoordinatorExceptions retryables = ExceptionMessagesProxy .create(RetryableCoordinatorExceptions.class); protected CoordinatorException(final boolean retryable, final ServiceCode code, final Throwable cause, final String detailBase, final String detailKey, final Object[] detailParams) { super(retryable, code, cause, detailBase, detailKey, detailParams); } protected CoordinatorException(final ServiceCode code, final Throwable cause, final String pattern, final Object[] parameters) { super(code, cause, pattern, parameters); } }