public LogicalExpression(LogicalExpressionType type) throws MissingOperandException {
if (type == LogicalExpressionType.FACT) {
this.logExpType = type;
this.elType = SocialStateElementType.LOGICAL_EXPRESSION;
}
else throw new MissingOperandException("Wrong type: requested a FACT.");
}