List of usage examples for java.lang CloneNotSupportedException getCause
public synchronized Throwable getCause()
From source file:com.silverpeas.notification.model.NotificationResourceData.java
@Override public NotificationResourceData clone() { NotificationResourceData clone;/*from www. j ava 2s . c o m*/ try { clone = (NotificationResourceData) super.clone(); clone.setId(null); } catch (final CloneNotSupportedException e) { throw new RuntimeException(e.getCause()); } return clone; }