James Moger
2011-05-20 f90dc635928f367f9078f814488c7e385ebc4e2e
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);
    }
}