mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-03 21:07:49 +08:00
28 lines
483 B
Java
28 lines
483 B
Java
/*
|
|
* Copyright (c) 2010 Mysema Ltd.
|
|
* All rights reserved.
|
|
*
|
|
*/
|
|
package com.mysema.codegen;
|
|
|
|
/**
|
|
* @author tiwe
|
|
*
|
|
*/
|
|
public class CodegenException extends RuntimeException{
|
|
|
|
private static final long serialVersionUID = -8704782349669898467L;
|
|
|
|
public CodegenException(String msg){
|
|
super(msg);
|
|
}
|
|
|
|
public CodegenException(String msg, Throwable t){
|
|
super(msg, t);
|
|
}
|
|
|
|
public CodegenException(Throwable t){
|
|
super(t);
|
|
}
|
|
}
|