comparison src/luan/LuanException.java @ 784:6a7c6879158d

revert shallowClone()
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 30 Aug 2016 12:08:49 -0600
parents 4083f5a67c63
children 4cf541886663
comparison
equal deleted inserted replaced
783:4083f5a67c63 784:6a7c6879158d
23 23
24 private LuanException(String msg,Throwable cause,int nonsense) { 24 private LuanException(String msg,Throwable cause,int nonsense) {
25 super(msg,cause); 25 super(msg,cause);
26 } 26 }
27 27
28 @Override public LuanException shallowClone(LuanCloner cloner) { 28 @Override public LuanException shallowClone() {
29 return new LuanException(getMessage(),getCause(),99); 29 return new LuanException(getMessage(),getCause(),99);
30 } 30 }
31 31
32 @Override public void deepenClone(LuanCloneable dc,LuanCloner cloner) { 32 @Override public void deepenClone(LuanCloneable dc,LuanCloner cloner) {
33 LuanException clone = (LuanException)dc; 33 LuanException clone = (LuanException)dc;