001/*
002Copyright 2015 Hendrik Saly
003
004Licensed under the Apache License, Version 2.0 (the "License");
005you may not use this file except in compliance with the License.
006You may obtain a copy of the License at
007
008    http://www.apache.org/licenses/LICENSE-2.0
009
010Unless required by applicable law or agreed to in writing, software
011distributed under the License is distributed on an "AS IS" BASIS,
012WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013See the License for the specific language governing permissions and
014limitations under the License.
015 */
016
017package de.saly.es.example.tssl.netty;
018
019public class UnexpectedSecurityException extends RuntimeException {
020
021    /**
022     * 
023     */
024    private static final long serialVersionUID = 1L;
025
026    public UnexpectedSecurityException() {
027    }
028
029    public UnexpectedSecurityException(final String message) {
030        super(message);
031    }
032
033    public UnexpectedSecurityException(final Throwable cause) {
034        super(cause);
035    }
036
037    public UnexpectedSecurityException(final String message, final Throwable cause) {
038        super(message, cause);
039    }
040
041    public UnexpectedSecurityException(final String message, final Throwable cause, final boolean enableSuppression,
042            final boolean writableStackTrace) {
043        super(message, cause, enableSuppression, writableStackTrace);
044    }
045
046}