view src/luan/LuanRuntimeException.java @ 1205:8f14426f8ada

change cipher_suite
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 06 Mar 2018 20:15:02 -0700
parents 1a68fc55a80c
children 46cf5137cb6b
line wrap: on
line source

package luan;


public final class LuanRuntimeException extends RuntimeException {
	public LuanRuntimeException(LuanException e) {
		super(e);
	}
}