001/* 002 * To change this license header, choose License Headers in Project Properties. 003 * To change this template file, choose Tools | Templates 004 * and open the template in the editor. 005 */ 006 007package org.dllearner.core.probabilistic.distributed.unife; 008 009/** 010 * 011 * @author Giuseppe Cota <giuseppe.cota@unife.it>, Riccardo Zese 012 * <riccardo.zese@unife.it> 013 */ 014public class CommunicatorGroupNotAssignedException extends RuntimeException { 015 016 public CommunicatorGroupNotAssignedException() { 017 super(); 018 } 019 020 public CommunicatorGroupNotAssignedException(String message) { 021 super(message); 022 } 023 024 public CommunicatorGroupNotAssignedException(Throwable cause) { 025 super(cause); 026 } 027}