Fibinger Ádám
2019-03-12 c4d8396bde66ac81731b267747c524c0d9fe98c6
1
2
3
4
5
6
7
package hu.unr.fiber.cardapi.interfaces;
 
public class CardNotFoundException extends Exception {
    public CardNotFoundException(String message) {
        super(message);
    }
}