James Moger
2011-04-29 bc9d4a0f2266e5ac1a018f0b691c76d53479b9e5
1
2
3
4
5
6
7
8
9
10
package com.gitblit;
 
public class GitBlitException extends Exception {
 
    private static final long serialVersionUID = 1L;
 
    public GitBlitException(String message) {
        super(message);
    }
}