summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/gui/tabs/outcome/form/CardinalException.java
blob: bb6d0391d9f4f48cd5c2acfaa15ed118d3782fb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.c2kernel.gui.tabs.outcome.form;

import com.c2kernel.gui.tabs.outcome.OutcomeException;

public class CardinalException extends OutcomeException {

    public CardinalException() {
        super();
    }

    public CardinalException(String ex) {
        super(ex);
    }
}