Move Lithium-specific logic from AbstractNormalizedNodeDataOutput
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / messaging / AssemblerSealedException.java
1 /*
2  * Copyright (c) 2017 Inocybe Technologies and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.messaging;
9
10 /**
11  * A MessageSliceException indicating the message assembler has already been sealed.
12  *
13  * @author Thomas Pantelis
14  */
15 public class AssemblerSealedException extends MessageSliceException {
16     private static final long serialVersionUID = 1L;
17
18     /**
19      * Constructs an instance.
20      *
21      * @param message he detail message
22      */
23     public AssemblerSealedException(String message) {
24         super(message, false);
25     }
26 }