001/** 002 * Copyright (c) 2014 Digi International Inc., 003 * All rights not expressly granted are reserved. 004 * 005 * This Source Code Form is subject to the terms of the Mozilla Public 006 * License, v. 2.0. If a copy of the MPL was not distributed with this file, 007 * You can obtain one at http://mozilla.org/MPL/2.0/. 008 * 009 * Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343 010 * ======================================================================= 011 */ 012package com.digi.xbee.api.exceptions; 013 014/** 015 * This exception will be thrown when trying to open the port/communication 016 * interface but it is already in use by other applications. 017 * 018 * @see ConnectionException 019 */ 020public class InterfaceInUseException extends ConnectionException { 021 022 // Constants 023 private static final long serialVersionUID = 1L; 024 private static final String DEFAULT_MESSAGE = "The connection interface is already in use by other application(s)."; 025 026 /** 027 * Creates an {@code InterfaceInUseException} with {@value #DEFAULT_MESSAGE} 028 * as its error detail message. 029 */ 030 public InterfaceInUseException() { 031 super(DEFAULT_MESSAGE); 032 } 033 034 /** 035 * Creates an {@code InterfaceInUseException} with the specified message. 036 * 037 * @param message The associated message. 038 */ 039 public InterfaceInUseException(String message) { 040 super(message); 041 } 042 043 /** 044 * Creates an {@code InterfaceInUseException} with the specified message 045 * and cause. 046 * 047 * @param message The associated message. 048 * @param cause The cause of this exception. 049 * 050 * @see Throwable 051 */ 052 public InterfaceInUseException(String message, Throwable cause) { 053 super(message, cause); 054 } 055}